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 ); } }
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |