wc_prevent_adjacent_posts_rel_link_wp_head()

Remove adjacent_posts_rel_link_wp_head – pointless for products.


Description Description


Source Source

File: includes/wc-template-functions.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.