…other plugins that do something with the_content hook. I think it’s better to use the autoembed functionality directly. That’s easy. Instead of echo apply_filters( ‘the_content’, $content_with_embed ); you do this: $embed = new WP_Embed(); echo $embed->autoembed( $content_with_embed ); This will do the autoembedding without any side effects and with no…You may notice that enabling Relevanssi custom excerpts breaks all autoembeds (things like Youtube video embeds) on search results pages. That’s done on purpose, because the autodiscovery of those embeds can be a proper performance killer if the search results include lots of embedded content. Thus, Relevanssi switches the feature……use autoembed directly. In general I recommend the option 3. Disable Relevanssi custom excerpts This one’s straightforward. Just disable Relevanssi custom excerpts, and this will no longer be a problem. Of course, you won’t get Relevanssi custom excerpts, either. Remove the Relevanssi autoembed disabler From the versions 2.14.4 (Premium) and…