Add horizontal rule button to editor
wordpress snippet
Adding this PHP snippet to the functions.php of your wordpress theme will add a <hr /> button to the editor.
snippet : PHPcopy
function enable_more_buttons($buttons) {
$buttons[] = 'hr';
return $buttons;
}
add_filter("mce_buttons", "enable_more_buttons");







Pingback: Add horizontal line button to Wordpress’s editor | The Real Lance Brown