Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save autocircled/98a8722635e423808155186d937692a3 to your computer and use it in GitHub Desktop.

Select an option

Save autocircled/98a8722635e423808155186d937692a3 to your computer and use it in GitHub Desktop.
RankMath - Allow changing of the canonical URL
/**
* Allow changing of the canonical URL.
*
* @param
string $canonical The canonical URL.
*/
add_filter( 'rank_math/frontend/canonical', function( $canonical ) {
return str_replace(
'https://blog.example.com',
'https://example.com/blog',
$canonical
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment