wp_editor with media buttons

I use wp_editor() on the frontend. media_buttons are displayed on default if visitor is logged in. I want to display these media buttons whether user is logged in or not. Is there any way to achieve this?

Related posts

Leave a Reply

1 comment

  1. You can use following code to achieve this

    if ( is_user_logged_in() ) {
     // Editor without media buttons
    wp_editor( $content, 'editorname', array('media_buttons' => false) );
    } else {
     // Editor with media buttons
     wp_editor( $content, 'editorname');
    }