X

How to block external requests on your WordPress site

You can block WordPress from making external requests to check for updates,download RSS feeds etc by adding below code to your wp-config.php file in root folder.

 
<?php
	define('WP_HTTP_BLOCK_EXTERNAL', true);
?>