我需要一些帮助。我尝试在全屏模式下在wordpress上插入charmap按钮,但我不知道,我应该在括号内写下什么。通常插入另一个按钮,我写了这样的代码:
function enable_more_buttons( $buttons ) {
$buttons['wp_more'] = array(
'title' => __('wp_more'),
'onclick' => "tinyMCE.execCommand('WP_More');",
'both' => false
);
return $buttons;
}
add_filter('wp_fullscreen_buttons', 'enable_more_buttons');
我猜,现在我应该改变它
function enable_more_buttons( $buttons ) {
$buttons['wp_more'] = array(
'title' => __('wp_more'),
'onclick' => "tinyMCE.execCommand('WP_More');",
'both' => false
);
$buttons['charmap'] = array(
'title' => __("charmap"),
'onclick' => "tinyMCE.execCommand('--SOMETHING HERE---');",
'both' => false
);
return $buttons;
}
add_filter('wp_fullscreen_buttons', 'enable_more_buttons');
请帮帮我
答案 0 :(得分:0)
没有命令为charmap afaik。
但你可以点击charmap按钮而不是使用execCommand:
'onclick' => "$('.mce-i-charmap').parent().click();",