Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created July 15, 2013 23:42
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 wpspeak/6004510 to your computer and use it in GitHub Desktop.
Save wpspeak/6004510 to your computer and use it in GitHub Desktop.
Add Button for Horizontal Line in TinyMCE Editor
<?php
function afn_more_buttons($buttons) {
$buttons[] = 'hr';
return $buttons;
}
add_filter("mce_buttons", "afn_more_buttons");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment