Skip to content

Instantly share code, notes, and snippets.

@thyforhtian
Created May 23, 2013 10:49
Show Gist options
  • Select an option

  • Save thyforhtian/5635238 to your computer and use it in GitHub Desktop.

Select an option

Save thyforhtian/5635238 to your computer and use it in GitHub Desktop.
wordpress: add quicktags buttons
function add_well_buttons() {
?>
<script type="text/javascript">
QTags.addButton( 'blue_well', 'blue well', '<div class="well">', '</div>', 'blue well', 'Blue well', 300 );
QTags.addButton( 'orange_well', 'orange well', '<div class="well orange">', '</div>', 'orange well', 'Orange well', 300 );
</script>
<?php
}
add_action( 'admin_print_footer_scripts', 'add_well_buttons' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment