Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Schema quicktags

(Cloned)

// Add Quicktags
function custom_quicktags() {

	if ( wp_script_is( 'quicktags' ) ) {
	?>
	<script type="text/javascript">
	QTags.addButton( 'Itemtype', '', '', '', '', 'Itemtype',  );
	QTags.addButton( 'Itemprop', '', '', '', '', 'Itemprop',  );
	</script>
	<?php
	}

}
add_action( 'admin_print_footer_scripts', 'custom_quicktags' );