取回More QuickTag按钮

时间:2013-02-25 作者:Brett

我无法确定如何将WP quicktag按钮添加回编辑器中,我已按如下方式自定义了编辑器:

function gimko_format_tiny_mce($in) {
    $in[\'remove_linebreaks\']=false;
    $in[\'convert_newlines_to_brs\']=false;
    $in[\'keep_styles\']=true;
    $in[\'tabfocus_elements\']=\'major-publishing-actions\';
    $in[\'paste_remove_styles\']=false;
    $in[\'paste_remove_spans\']=false;
    $in[\'paste_strip_class_attributes\']=\'none\';
    $in[\'paste_text_use_dialog\']=true;
    $in[\'plugins\']=\'inlinepopups,tabfocus,paste,media,fullscreen,wordpress,wpeditimage,wpgallery,wplink,wpdialogs,wpfullscreen\';
    $in[\'apply_source_formatting\']=false;
    $in[\'theme_advanced_buttons1\']=\'formatselect,forecolor,|,bold,italic,underline,|,bullist,numlist,blockquote,|,justifyleft,justifycenter,justifyright,justifyfull,|,link,unlink,|,wp_fullscreen,wp_adv\';
    $in[\'theme_advanced_buttons2\']=\'pastetext,pasteword,removeformat,|,charmap,|,outdent,indent,|,undo,redo\';
    $in[\'theme_advanced_buttons3\']=\'\';
    $in[\'theme_advanced_buttons4\']=\'\';
    $in[\'valid_children\'] = \'+div[p]\';
    return $in;
}
我需要添加什么才能使其恢复显示?

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

不知道为什么这么难回答,但经过更多的研究;我已经找到了答案——对于其他任何想知道的人,你只要使用wp_more 在任何theme_advanced_buttons 指数

结束

相关推荐

初始化TinyMCE后将脚本入队

我正在使用jquery在一个元框内制作一个小的实时预览区域,在这里我需要从tinymce编辑器获取内容。但我的脚本似乎是在tinymce之前加载的,当我尝试从编辑器字段获取内容时,它返回null。Enqueue:add_action(\'admin_enqueue_scripts\', \'wpk_popup_admin_script\', 100); function wpk_popup_admin_script($hook) { global $post;