Skip to content

Instantly share code, notes, and snippets.

@BronsonQuick
Created March 4, 2012 07:03
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 BronsonQuick/1971087 to your computer and use it in GitHub Desktop.
Save BronsonQuick/1971087 to your computer and use it in GitHub Desktop.
Add the anchor button back to the TinyMCE editor in WordPress
<?php /*
* Add the anchor link button back to the TinyMCE Editor in WordPress
*/
function sennza_mce_buttons( $buttons ){
array_push( $buttons, "anchor" );
return $buttons;
}
add_filter( 'mce_buttons', 'sennza_mce_buttons' ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment