Skip to content

Instantly share code, notes, and snippets.

@BronsonQuick
Created March 4, 2012 07:40
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 BronsonQuick/1971144 to your computer and use it in GitHub Desktop.
Save BronsonQuick/1971144 to your computer and use it in GitHub Desktop.
Add the horizontal rule <hr> button back to the TinyMCE editor in WordPress
<?php /*
* Add the horizontal rule button back to the WordPress TinyMCE editor
*/
function sennza_hr_button($buttons) {
$buttons[] = 'hr';
return $buttons;
}
add_filter( 'mce_buttons', 'sennza_hr_button' ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment