Skip to content

Instantly share code, notes, and snippets.

@wp-seopress
Last active September 24, 2020 16:11
Show Gist options
  • Save wp-seopress/cd88f7aad8a04ffa4c4899dc56b8b83b to your computer and use it in GitHub Desktop.
Save wp-seopress/cd88f7aad8a04ffa4c4899dc56b8b83b to your computer and use it in GitHub Desktop.
Filter canonical URL
function sp_titles_canonical($html) {
$html = '<link rel="canonical" href="'.htmlspecialchars(urldecode('https://example.com/my-canonical-url')).'" />';
return $html;
}
add_filter('seopress_titles_canonical','sp_titles_canonical');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment