Skip to content

Instantly share code, notes, and snippets.

@jshwlkr
Created July 24, 2025 17:57
Show Gist options
  • Select an option

  • Save jshwlkr/1be6fb6264499e974f8cc2eed218442d to your computer and use it in GitHub Desktop.

Select an option

Save jshwlkr/1be6fb6264499e974f8cc2eed218442d to your computer and use it in GitHub Desktop.
Disable XMLRPC endpoint
public function disable_xmlrpc() {
add_filter( 'xmlrpc_enabled', '__return_false' );
add_action(
'xmlrpc_call',
function () {
wp_die( 'XML-RPC services are disabled on this site.', 'XML-RPC Disabled', array( 'response' => 403 ) );
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment