22

How to Disable WordPress Embeds Using PHP Code

Powered by WPCodeBox

Learn how to disable WordPress embeds using PHP code with this simple snippet.


<?php 

function my_disable_embeds() {
    wp_dequeue_script('wp-embed');
}

add_action('wp_footer', 'my_disable_embeds');

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.