wc_prevent_adjacent_posts_rel_link_wp_head()
Remove adjacent_posts_rel_link_wp_head - pointless for products.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wc_prevent_adjacent_posts_rel_link_wp_head();
Список изменений
С версии 3.0.0 | Введена. |
Код wc_prevent_adjacent_posts_rel_link_wp_head() wc prevent adjacent posts rel link wp head WC 9.8.2
function wc_prevent_adjacent_posts_rel_link_wp_head() { if ( is_singular( 'product' ) ) { remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 ); } }