Решение, как сделать автоматическое добавление номера страницы в мета-теги Title и Description для страниц пагинации в «1С-Битрикс»
Решение:
Добавить в init.php:
AddEventHandler("main", "OnEndBufferContent", "ChangeMyContent"); function ChangeMyContent(&$content) { if(isset($_GET['PAGEN_1'])) { $page=(int)$_GET['PAGEN_1']; $pattern = '/(.*?)<title[^>]*>(.*?)\n?\n?<\/title>(.*)/s'; $replacement = '$1<title>$2'.' страница - '.$page.'</title>$3'; $content= preg_replace($pattern, $replacement, $content); $pattern = '/(.*?)<meta name="description" content="(.*?)\n?\n?"\s?\/>(.*)/s'; $replacement = '$1<meta name="description" content="$2'.' страница - '.$page.'" />$3'; $content= preg_replace($pattern, $replacement, $content); } }
Похожие решения:
Комментарии (0)