Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ************************* Add [copy,paste and cut] buttons in your wordpress visual post editor ************************
- //Just pate this code in your theme's functions.php file.....
- function enable_more_buttons($buttons) {
- $buttons[] = 'copy';
- $buttons[] = 'cut';
- $buttons[] = 'paste';
- return $buttons;
- }
- add_filter("mce_buttons_2", "enable_more_buttons");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement