wc_prevent_adjacent_posts_rel_link_wp_head()WC 3.0.0

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 8.7.0

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 );
	}
}