0

我在 wordpress 中尝试了 Wp_editor,因为视觉选项卡工作正常,文本选项卡正在获取列表顺序。

 <?php
                                        $settings = array(
                                                        'textarea_name' => 'message1',
                                                         'media_buttons' => true,
                                                        'tinymce' => array(
                                                        'theme_advanced_buttons1' => 'formatselect,|,bold,italic,underline,|,' .
                                                        'bullist,blockquote,|,justifyleft,justifycenter' .
                                                        ',justifyright,justifyfull,|,link,unlink,|' .
                                                        ',spellchecker,wp_fullscreen,wp_adv'
                                                            )
                                                        );
                                        wp_editor( '', 'content', $settings );
                                                                            ?>

在此处输入图像描述

同样对于可视化编辑器,它应该看起来像这样 在此处输入图像描述

我不知道 wordpress 编辑器发生了什么。

任何建议都会很棒。

4

1 回答 1

0

最后我做了我自己的。问题是代码在表内。最后这是我所做的解决方案

<table>      <tr class="form-field">
            <th valign="top" scope="row">
                <label for="subject"><?php _e('Subject')?></label>
            </th>
            <td>
                <input id="subject1" name="subject1" type="text" style="width: 95%" value=""
                       size="50" class="code" placeholder="<?php _e('')?>" required>
            </td>
        </tr>
            <tr class="form-field">
            <th valign="top" scope="row">
                <label for="message1"><?php _e('Message')?></label>
            </th>
            <td>

            </td>
        </tr>
        </tbody>
    </table>
     <?php
                                            $settings = array(
                                                            'textarea_name' => 'message1',
                                                             'media_buttons' => true,
                                                            'tinymce' => array(
                                                            'theme_advanced_buttons1' => 'formatselect,|,bold,italic,underline,|,' .
                                                            'bullist,blockquote,|,justifyleft,justifycenter' .
                                                            ',justifyright,justifyfull,|,link,unlink,|' .
                                                            ',spellchecker,wp_fullscreen,wp_adv'
                                                                )
                                                            );
                                            wp_editor( '', 'content', $settings );
                                                                                ?>
于 2013-05-15T14:24:14.633 回答