• Hi,
    I’m trying to create own front end post editor using wp_editor().
    Id works fine, I can add posts but… I can’t change it to visual editor, can’t add media and quicktags-toolbar is not loading any buttons.

    There is tones of similar questions but none answer are helping my problem

    
    <form action="<? $_SERVER['REQUEST_URI'] ?>" method="post" id="form_rejestracyjny" enctype="multipart/form-data">
                    <h4>Add new post</h4>
                    
                    <label>TPost title</label><br>
                    <input type="text" name="tytul_postu" size="50" maxlength="150" required><br><br>
    
    $settings = array( 'textarea_name'   => 'tresc_posta',
                         'editor_class'   => 'frontend-edytor-artykulow',
                        'textarea_rows'   => 15,
                        'media_buttons'   => TRUE
                                    );
                    
                    
                    wp_editor( $content, $editor_id, $settings );
    ...
    

    Could anybody tell me what am doing wrong or what I’m missing?
    Regards

  • The topic ‘wp_editor() working but without buttons and upload’ is closed to new replies.