Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Quicktags – special qoute

Quicktag for custom blockquote.

// Add Quicktags
function custom_quicktags() {

	if ( wp_script_is( 'quicktags' ) ) {
	?>
	<script type="text/javascript">
	QTags.addButton( 'special_quote', 'quote', '<blockquote class="special-quote">', '</blockquote>', 'b', 'Special Quote', 1 );
	</script>
	<?php
	}

}

// Hook into the 'admin_print_footer_scripts' action
add_action( 'admin_print_footer_scripts', 'custom_quicktags' );