/***** Изменить мета теги в битриксе при постраничной навигации *****/
AddEventHandler("main", "OnEndBufferContent", "updatePagenation");
function updatePagenation(&$content)
{
if (isset($_GET['PAGEN_1']) && $_GET['PAGEN_1'] > 1) {
$curPage = $_GET['PAGEN_1'];
// title
$content = str_replace("</title>", " — страница " . $curPage . "</title>", $content);
// description
$pattern = '#<meta name="description" content="(.*?)" />#s';
preg_match($pattern, $content, $matches);
$content = str_replace($matches[1], $matches[1] . " — страница " . $curPage, $content);
// h1
$content = str_replace("</h1>", " — страница " . $curPage . "</h1>", $content);
}
}
/***** Изменить мета теги в битриксе при постраничной навигации *****/