誰か助けてください。カスタム メタ ボックスを作成しました。そのうちの 2 つはテキストエリアにあります。これは私が持っているものです:
array(
'label'=> 'Ingredients',
'desc' => 'List of ingrediends',
'id' => $prefix.'ingrediends',
'type' => 'textarea'
),
array(
'label'=> 'Directions',
'desc' => 'Directions',
'id' => $prefix.'directions',
'type' => 'textarea'
)
==========================
case 'textarea':
echo '<textarea name="'.$field['id'].'" id="'.$field['id'].'" cols="60" rows="4">'.$meta.'</textarea>
<br /><span class="description">'.$field['desc'].'</span>';
break;
wp_editor を追加するにはどうすればよいですか? 私は試した:
wp_editor( $content, 'recipe_directions', array( 'textarea_name' => 'recipe_directions', 'media_buttons' => false, 'tinymce' => array() ) );
しかし、運がありません。誰でも助けることができます。全体のアイデアは、リッチテキストエディターのような通常のテキストエリアを作成することです
助けてくれてありがとう....誰でも:)