Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wp-seopress/6e9957965dfdc1b494233bcc9de65cef to your computer and use it in GitHub Desktop.
Save wp-seopress/6e9957965dfdc1b494233bcc9de65cef to your computer and use it in GitHub Desktop.
Filter home URL for Google Inspect URL API
//In case you use a property domain with Google Search console
function sp_inspect_url_home_url($home_url) {
//default: get_home_url();
return 'sc-domain:example.com';
}
add_filter('seopress_inspect_url_home_url', 'sp_inspect_url_home_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment