Created
May 23, 2013 10:49
-
-
Save thyforhtian/5635238 to your computer and use it in GitHub Desktop.
wordpress: add quicktags buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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