set widget to no index
-
Hello RankMath Support,
i have a request, i would like to set the widget “woocommerce_product_categories” to no index. i have created a code for this. can you tell me if it can work to not index the widget but the rest of the page?
function exclude_widget_from_indexing() {
$widget_ids_to_exclude = array( ‘woocommerce_product_categories’ );
$current_widget_id = get_query_var( ‘widget’ );if ( in_array( $current_widget_id, $widget_ids_to_exclude ) ) { echo '<meta name="robots" content="noindex,nofollow" />'; }
}
add_action( ‘wp_head’, ‘exclude_widget_from_indexing’ );best regards
Daniel
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘set widget to no index’ is closed to new replies.