WP_EDITOR-在页面上设置渲染位置

时间:2013-08-19 作者:Kiksy

我想包括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> 按我的要求。

1 个回复
SO网友:Dave Romsey

正如kaiser所说,您试图返回WP编辑器实例的标记,但您正在使用wp_editor() - 一种响应其输出的函数。

source 非常清楚地指出,此方法渲染编辑器。你需要准确地在你想要的地方调用它。

结束

相关推荐