Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaiderella/6af9bcf9f19214617cf1 to your computer and use it in GitHub Desktop.
Save Kaiderella/6af9bcf9f19214617cf1 to your computer and use it in GitHub Desktop.
Kích hoạt các chức năng ẩn của trình soạn thảo WordPress
function enable_more_buttons($buttons) {
$buttons[] = 'fontselect';
$buttons[] = 'fontsizeselect';
$buttons[] = 'styleselect';
$buttons[] = 'backcolor';
$buttons[] = 'newdocument';
$buttons[] = 'cut';
$buttons[] = 'copy';
$buttons[] = 'charmap';
$buttons[] = 'hr';
$buttons[] = 'visualaid';
return $buttons;
}
add_filter("mce_buttons_3", "enable_more_buttons");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment