How to Make WPCodeBox2 Full Width by H...
This WordPress snippet efficiently hides the default WordPress menu, allowing WPCodeB...

WPCodeBox
372
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');





