我的wp主题设置中有<textarea>
。如何将其转换为使用wordpress HTML编辑器?
答案 0 :(得分:1)
使用wp_editor()
。
示例:
$editor_settings = array (
'textarea_rows' => 8
, 'media_buttons' => FALSE
, 'teeny' => TRUE
, 'tinymce' => FALSE
// a very minimal setup
, 'quicktags' => array ( 'buttons' => 'strong,em,link' )
);
wp_editor( $content, $key, $editor_settings );
有关更好的示例,请参阅this answer上的tag wp-editor和WordPress Stack Exchange上的{{3}}。