Skip to content

Instantly share code, notes, and snippets.

@raewrites
Created January 13, 2015 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raewrites/9c3f2b29eea77b43f0cb to your computer and use it in GitHub Desktop.
Save raewrites/9c3f2b29eea77b43f0cb to your computer and use it in GitHub Desktop.
Add My Quicktags
if( !function_exists('_add_my_quicktags') ){
function _add_my_quicktags()
{ ?>
<script type="text/javascript">
QTags.addButton( 'p', 'p', '<p>', '</p>' );
QTags.addButton( 'br', 'br', '<br>', '<br>' );
QTags.addButton( 'h3', 'H3', '<h3>', '</h3>' );
QTags.addButton( 'h4', 'H4', '<h4>', '</h4>' );
</script>
<?php }
add_action('admin_print_footer_scripts', '_add_my_quicktags');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment