wp_editor id和name的不同参数

时间:2017-12-11 12:52:31

标签: wordpress wp-editor

我在wordpress中创建 wp_editor ,如下所示

<?php

$content = '';
$editor_id = 'mycustomeditor';

wp_editor( $content, $editor_id );

?>

但我想以不同的方式传递 ID和名称 ,如下所示

<?php

$content = '';
$editor_id = 'mycustomeditor';
$editor_name = 'mycustomeditorname';
wp_editor( $content, $editor_id,$editor_name );

?>

有什么办法可以在 wordpress

中完成

2 个答案:

答案 0 :(得分:1)

请尝试这种方式。这对我来说很好。

<?php
$content = '';
$editor_id = 'mycustomeditor';
$settings = array( 'textarea_name' => 'mycustomeditorname' );
wp_editor( $content, $editor_id, $settings );
?>

在这里查找其他wp_editor设置,例如添加类名,css等。 https://codex.wordpress.org/Function_Reference/wp_editor

答案 1 :(得分:1)

<?php
 $content = '';
 $editor_id = 'mycustomeditor';
 wp_editor( $content, $editor_id, array( 'textarea_name' => 'mycustomeditorname' ) );
?>