Home / Disable REST API Links
Duplicate Snippet

Embed Snippet on Your Site

Disable REST API Links

Remove all head links to the REST API endpoints from the page source.

400+
Code Preview
php
<?php
remove_action( 'xmlrpc_rsd_apis', 'rest_output_rsd' );
remove_action( 'wp_head', 'rest_output_link_wp_head' );
remove_action( 'template_redirect', 'rest_output_link_header', 11 );

Comments

Add a Comment