How to Limit Image Upload Size on Your...
Preserve MyListing website performance and disk storage by limiting image upload size...

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





