你好@José Pablo Orozco Marín:
如果您正在寻找如何自己对自定义按钮进行编码,WordPress的Codex有一个很好的示例,向您展示了如何:
- http://codex.wordpress.org/TinyMCE_Custom_Buttons这个例子很复杂,因为它向您展示了如何添加自己的控件,但如果您使用的是不需要制作的标准按钮,那么就太复杂了。以下是标准按钮列表:
- http://tinymce.moxiecode.com/wiki.php/Buttons/controls为了说明这一点,我修改了示例,只显示您想要的按钮。此代码可以放置在主题的
functions.php
文件或中的.php
您可能正在编写的插件的文件:function myplugin_addbuttons() {
// Don\'t bother doing this stuff if the current user lacks permissions
if ( ! current_user_can(\'edit_posts\') && ! current_user_can(\'edit_pages\') )
return;
// Add only in Rich Editor mode
if ( get_user_option(\'rich_editing\') == \'true\') {
add_filter(\'mce_buttons\', \'register_myplugin_button\');
}
}
function register_myplugin_button($buttons) {
$buttons = array(
\'bold\',
\'italic\',
\'underline\',
\'bullist\',
\'numlist\',
\'link\',
\'unlink\',
\'blockquote\',
);
return $buttons;
}
// init process for button control
add_action(\'init\', \'myplugin_addbuttons\');
下面是添加新帖子时的效果: