Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
What is the version number? – faa Nov 30 '12 at 2:10
my wordpress version is 3.4.2 – rjx44 Nov 30 '12 at 2:11
1  
Minimum role to upload files is "Author". Makes sense. – faa Nov 30 '12 at 3:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.