Skip to content

Instantly share code, notes, and snippets.

@anythinggraphic
Last active April 23, 2016 18:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anythinggraphic/67ff70cbf0ddca924b31 to your computer and use it in GitHub Desktop.
Save anythinggraphic/67ff70cbf0ddca924b31 to your computer and use it in GitHub Desktop.
Add A Horizontal Rule (HR) Button to the WordPress Editor
<?php
//* Add HR button to TinyMCE
//* @link http://anythinggraphic.net/horizontal-rule-button-in-wordpress
add_filter("mce_buttons", "ag_horizontal_rule_button");
function ag_horizontal_rule_button($buttons) {
$buttons[] = 'hr';
return $buttons;
}
hr {
border-top: 1px solid #ccd8db;
border-bottom: 1px solid white;
clear: both;
margin: 3rem 0;
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment