WordPress
- 1 ответ
- 0 вопросов
1
Вклад в тег
/*
* Remove hreflangs from Polylang *
*/
add_filter('pll_rel_hreflang_attributes', 'remove_polylang_hreflang_attributes', 10, 1);
function remove_polylang_hreflang_attributes ($hreflangs) {
$hreflangs = [];
return $hreflangs;
}