我正在使用wp editor
在自定义字段中输出WYSIWIG编辑器。我正在使用以下功能:
/**
* Output native WordPress WYSIWIG editor
*
* media_buttons and quicktags are set to true by default
*
* @param $helper_text
* @param $id
* @param bool $media_buttons
* @param bool $quicktags
* @return mixed
*/
function native_wysiwig_editor($helper_text, $id, $media_buttons = true, $quicktags = true) {
$content= get_post_meta( get_the_id(), $id, true );
$settings = ['media_buttons' => $media_buttons,'quicktags' => $quicktags ];
if( strlen( stripslashes($content)) == 0) $content = $helper_text;
$editor_id = $id;
$wywisig = wp_editor( $content, $editor_id, $settings );
return $wywisig;
}
我这样引用它:
native_wysiwig_editor('helper text here', '_intro_product_test', false);
我很困惑看at the doc如何引用wp_editor
如何实际让它显示正常的“Visual Editor”实例,该实例对前端用户起到了很好的作用。我错过了什么?任何帮助将不胜感激。