I have a problem with wp_editor in wordpress. I already coded the right args for it to work based on wordpress documentation but still no luck in fixing it. The media button does not appear.
my code is this:
$editor = array(
'wpautop' => true,
'textarea_rows' => '8',
'textarea_name' => 'blog_content',
'media_buttons' => true,
'editor_class' => 'required editorMCE',
'quicktags' => true
);
$editor_id = "blogcontent";
wp_editor( "", $editor_id, $settings = $editor );
I hope somebody could help me out.
updated: the media button appears if the user is an administrator but other than that media button does not appear.