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?
1 Answer
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');
}