How about removing xmlrpc.php from the HTTP response headers?
-
Great plugin. One thing that’s missing:
xmlrpc.php is still shown in response headers. This page discusses how to remove it:
https://www.deluxeblogtips.com/2013/08/disable-xml-rpc-wordpress.htmlor basically:
add_filter( 'wp_headers', 'yourprefix_remove_x_pingback' ); function yourprefix_remove_x_pingback( $headers ) { unset( $headers['X-Pingback'] ); return $headers; }
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How about removing xmlrpc.php from the HTTP response headers?’ is closed to new replies.