Skip to content

Instantly share code, notes, and snippets.

@wildiney
Created June 28, 2011 14:52
Show Gist options
  • Save wildiney/1051302 to your computer and use it in GitHub Desktop.
Save wildiney/1051302 to your computer and use it in GitHub Desktop.
WordPress - Enable buttons cut, copy and paste on Tiny MCE Buttons
<?php
function enable_more_buttons($buttons) {
$buttons[] = 'copy,cut,paste';
return $buttons;
}
add_filter("mce_buttons_2", "enable_more_buttons");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment