Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

pietrolettig google tag manager

tag manager

// Add Quicktags
function custom_quicktags() {

	if ( wp_script_is( 'quicktags' ) ) {
	?>
	<script type="text/javascript">
	QTags.addButton( 'eg_paragraph', 'p', '<p>', '</p>', 'p', 'Paragraph tag', 1 );
	QTags.addButton( 'eg_hr', 'hr', '<hr />', '', 'h', 'Horizontal rule line', 201 );
	QTags.addButton( 'eg_pre', 'pre', '<pre>', '</pre>', 'q', 'Preformatted text', 111 );
	QTags.addButton( 'pietrolettig google tag manager', '', '<!-- Google Tag Manager -->', '', 'gtm', 'tag manager', 1, '' );
	</script>
	<?php
	}

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