Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

In WP 3.4.x and earlier, it was possible to add a button to the media manager by messing around in an attachment_fields_to_edit filter. For example, a plugin could, when it figured out that an item was an audio file, append some HTML for an extra button to the url field, like so.

 $playertag = "[audio $url]";
 $fields['url']['html'] .= 
      "<button type='button' class='button data-link-url='$playertag' urlaudioplayer audio-player-$postid'>Audio Player</button>"; 

The new media manager has changed the set of buttons that were in that html tag into a pulldown menu -- a <select .../> item. The html code is emitted in media-template.php. The new code still calls attachment_fields_to_edit filters, but doesn't pass in any fields.

Is there a way to extend this select item without hacking the core (which I won't do). Is it conceivable to write a bit of js which will use jQuery to add an item to it?

share|improve this question
I read this question five times and still don't get around what exact buttons you're talking about. Could you please edit the question or add a screenshot? Thanks. – kaiser May 9 at 16:48

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.