Skip to content

Instantly share code, notes, and snippets.

@artikus11
Last active January 12, 2022 16:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save artikus11/34ac036b3ce0a1f54ae2ab9d876c5156 to your computer and use it in GitHub Desktop.
Save artikus11/34ac036b3ce0a1f54ae2ab9d876c5156 to your computer and use it in GitHub Desktop.
Перенаправление канонических ссылок страниц пагинации на основную страницу
<?php
add_filter('wpseo_canonical', 'removeCanonicalArchivePagination');
function removeCanonicalArchivePagination($link) {
$link = preg_replace('#\\??/page[\\/=]\\d+#', '', $link);
return $link;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment