В мета-описаниях элементов находим фразу "Василек" и заменяем ее на "Вери Гуд"
Теги: InheritedProperty, update seo metaТеги: InheritedProperty, update seo meta
31.03.2021
$iblock_id = 24;
$search_text = "Василек";
$repl = "Вери Гуд";
$arSelect = Array("IBLOCK_ID", "ID", "NAME", "DETAIL_PAGE_URL");
$arFilter = Array("IBLOCK_ID"=>$iblock_id, "ACTIVE" => "Y");
$res = CIBlockElement::GetList(Array(), $arFilter, false, array(), $arSelect);
while($arItem=$res->GetNext())
{
$ipropSectionValues = new \Bitrix\Iblock\InheritedProperty\ElementValues($iblock_id,$arItem[ID]);
$SR = $ipropSectionValues->getValues();
foreach($SR as $k => $v)
{
if(preg_match("#".$search_text."#",$v) && $k == "ELEMENT_META_DESCRIPTION")
{
$ipropTemplates = new \Bitrix\Iblock\InheritedProperty\ElementTemplates ($iblock_id,$arItem[ID]);
$ipropTemplates->set(array(
"ELEMENT_META_DESCRIPTION" => preg_replace("#".$search_text."#", $repl, $v),
));
}
}
}
Теги: InheritedProperty, update seo metaТеги: InheritedProperty, update seo meta
31.03.2021