• Hey all.

    The last days I experimented with wp_editor on backend-page. Really nice that I can create own HTML-Editors with custom button-combination. But now I need an editor with the table-button.

    While editing Posts / pages, I have such an button (TinyMCE is installed, may because of that Plugin the button appears) but on my custom wp_editor I can’t Display that button.

    Heres my PHP

    wp_editor(
        '',
        'contact',
        array(
            'wpautop'       => FALSE,
            'media_buttons' => FALSE,
            'teeny'         => FALSE,
            'tinymce'       => array(
                'toolbar1' => 'bold,italic,table',
            ),
        )
    );

    Shouldn’t that work?

The topic ‘wp_editor with table-button on custom backend page’ is closed to new replies.