Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

kaxigt_quicktags

A simple test

// Add Quicktags
function kaxigt_quicktags() {

	if ( wp_script_is( 'quicktags' ) ) {
	?>
	<script type="text/javascript">
	QTags.addButton( 'full_width', 'full_width', '', '', '', '', 1 );
	QTags.addButton( 'one_half', 'one_half', '', '', '', '', 2 );
	QTags.addButton( 'one_third', 'one_third', '', '', '', '', 3 );
	</script>
	<?php
	}

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