我想在页面编辑器上添加按钮,并在新的WordPress版本中发布文本编辑器
我正在使用此代码添加页面按钮并在按单词的情况下发布编辑器。
add_action('media_buttons','wpbeautify_add_sc_select',11);
function wpbeautify_add_sc_select(){
echo '<a title="FotoPress" data-editor="content" class="button" id="wpbeautify-editor-button" href="#"><img src="'.WPBEAUTIFY_URL.'/img/icons/logo.png"> FotoPress</a>';
}
您能帮我解决这个问题吗?
答案 0 :(得分:0)
使用WordPress 5和古腾堡(Gutenberg),媒体按钮不再存在。您可能需要做的是为您的媒体类型创建一个新块。我建议您参考Gutenberg Block API Reference和how the core/image block was implemented作为指南。