How do I disable XML-RPC in WordPress Multisite?
The simplest solution is a rule inside the .htaccess of the installation, if it is an Apache server. The following syntax should support you. Protect the whole access # PROTECT xmlrpc.php <Files xmlrpc.php> Order Allow,Deny Deny from all </Files> Access for several apps # ACCESS for xmlrpc surface only for different apps <IfModule mod_setenvif.c> <Files … Read more