I have these links in my site and they slow down the site by nearly 5 seconds, can they be removed?
First you should clarify why your site is loading ressources from that domain.
It’s not from the Enfold theme.
By deactivating all plugins and reactivating them one by one you should be able to find the one referencing files from api.w.org.
Deactivate all caching, merging and compressing at first.
Hi mmsdev,
Please try what cg suggested first, if you can’t find what’s causing it try adding this in your functions.php:
// Disable REST API link tag
remove_action('wp_head', 'rest_output_link_wp_head', 10);
// Disable oEmbed Discovery Links
remove_action('wp_head', 'wp_oembed_add_discovery_links', 10);
// Disable REST API link in HTTP headers
remove_action('template_redirect', 'rest_output_link_header', 11, 0);
Let us know if it helps.
@cg thanks again for helping out :)
Best regards,
Nikko