WordPress TinyMCE将按钮添加到全屏模式编辑器

时间:2013-08-27 作者:Omar Tariq

我在WordPress post editor(TinyMCE)正常模式下创建了一个按钮(名为“quote”),并成功地为该按钮添加了一些功能。问题是,如何使此按钮也出现在“全屏模式编辑器”(也称为无分心写作模式)中。

功能。php:-

add_action(\'init\', \'add_button\');  
function add_button() {  
   if ( current_user_can(\'edit_posts\') &&  current_user_can(\'edit_pages\') )  
   {  
     add_filter(\'mce_external_plugins\', \'add_plugin\');  
     add_filter(\'mce_buttons_3\', \'register_button\');  
   }  
}  
function register_button($buttons) {  
   array_push($buttons, "quote");  
   return $buttons;  
}  
function add_plugin($plugin_array) {  
   $plugin_array[\'quote\'] = get_bloginfo(\'template_url\').\'/js/customcodes.js\';  
   return $plugin_array;  
}
我在google上搜索了一下,发现可能需要添加一些过滤器。WordPress在完全模式下过滤掉按钮,所以我必须再次将按钮添加到$按钮数组中。我相信我已经很接近了。

1 个回复
最合适的回答,由SO网友:yantrakaar 整理而成

您可以检查this link 为您的问题。它会帮助你的。

这是您要查找的链接:Enjoy!

结束

相关推荐

WordPress帖子中iframe src中的WordPress内容.php文件

我想在帖子中插入一个带有WordPress内容的iframe。我解释我自己。我有两件事:一个帖子和一个演讲。在the_content() WordPress过滤器,我将iframe添加到$内容。此iframe有一个指向自定义的src。php文件,并在其中。php我想访问我的循环,但我无法做到这一点。所以我作弊并通过URL传递帖子的ID,所以我的iframe代码是:<iframe src=\\\"\".WP_PLUGIN_URL.\"/presentation/embedded_presentatio