Disabling wp-mediaelement breaks gallery embeds
-
I’m trying to remove some of the built in WordPress features I’m not using on my site but when I dequeue wp-mediaelement, it breaks embedded foogalleries in my posts. Does Foogallery require these or is there a way of dequeueing them without breaking it. Here’s the function I’m using.
add_action('init', 'remove_media_element', 10); function remove_media_element() { wp_deregister_script('wp-mediaelement'); wp_deregister_style('wp-mediaelement'); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Disabling wp-mediaelement breaks gallery embeds’ is closed to new replies.