我想在我自己的插件中集成内置在微小MCE编辑器中的wordpress。我知道有wp_editor()
函数可以用于此目的。不幸的是,我想在我制作的短代码中加载它。短代码的工作方式是将预期输出设置为函数的返回值。因此,我需要找到一种方法将wordpress微小的MCE编辑器HTML字符串连接到我的短代码函数的返回值。
public function submission_form(){
$returnVal = "-- My own shortcode output --";
$returnVal .= wp_tiny_mce_editor_please(); // <<== Does WP has this kind of function?
$returnVal .= "-- End of my own shortcode output --";
return $returnVal;
}
wordpress中是否有与wp_editor()
具有相似功能的函数但返回的html字符串而不是直接在函数内回显?