How to hide additional embeds?
-
Final question today, I promise π
So besides the already hidden core embeds, at the time of writing:
Amazon Kindle, Animoto, Cloudup, Crowd Signal, Daily Motion, Hulu, Mixcloud, Polldaddy, Reverbnation, Smugmug, Speaker, VideoPress, Wolfram Cloud, and WordPress.tv
How do I hide more embeds? Say, I’d like to hide SoundCloud, Twitter and Spotify. I experimented with the following, which is not working, but maybe could give you an idea of what I’m trying to achieve:
// MRW Simplified Editor - Hide Additional Embeds add_filter( 'mrw_hidden_embeds', 'mrw_hide_additional_embeds', 10, 2 ); function mrw_hide_additional_embeds( $hidden_embeds ) { $hidden_embeds[] = array('soundcloud','twitter','spotify'); return $hidden_embeds; }And can it be turned around, to be a positive list instead of a negative list? Like, only allow, say, YouTube and Vimeo embeds, disable all the others?
Again, thanks for the help. And no stress!
The topic ‘How to hide additional embeds?’ is closed to new replies.
