hr

Add a horizontal rule buttom to the text editor by placing the following code to the functions.php file.

function enable_more_buttons($buttons) {
$buttons[] = 'hr';
return $buttons;
}
add_filter("mce_buttons", "enable_more_buttons");