0

テーマ オプションで小さなエディターからデータを保存しようとしていますが、保存されません。これが私の完全なケースです

case 'tiny':

    $tinysettings = array(
        'editor_class' => 'theme_editor',
        'tinymce' => array(
            'theme_advanced_buttons1' => 'bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,link,unlink,anchor,|,blockquote',
            'theme_advanced_buttons2' => 'formatselect,forecolor,|,image,|,sub,sup',
            'theme_advanced_buttons3' => '',
            'theme_advanced_buttons4' => '',
            'width' => '450',
            'height' => '200',
        ),
    );

?>

    <div class="options_input options_textarea">
        <div class="options_desc"><?php echo $value['desc']; ?></div>
        <span class="labels"><label for="<?php echo $value['id']; ?>"><?php echo $value['name']; ?></label></span>

        <div class="tiny-editor">
            <?php wp_editor( '', $value['id'], $tinysettings ); ?>
        </div>
    </div>
<?php
break;
4

1 に答える 1