我想包括wp_editor 在设置页面中。
public function addEditor($content = \'\')
{
$editor_id = \'createposteditor\';
$args = array(
\'textarea_rows\' => 15,
\'teeny\' => true,
\'quicktags\' => false,
\'editor_class\' => \'createpost-editor\'
);
return wp_editor( $content, $editor_id, $args );
}
然后我在设置页面上显示:
<tr>
<td align="left" scope="row">
<h1>Add content (optional)</h1>
\'. $poster->addEditor() .\'
</td>
</tr>
我的问题是,编辑器总是在页面顶部呈现,而不是从
<td>
按我的要求。