Exclude left menu
-
Hi,
I am interesting in excluding a left menu from search. I use the left menu on some web pages and I would like to exclude it because then for the search “word sketch” I get among results the following web page: https://www.sketchengine.co.uk/user-guide/user-manual/word-list/ (only thanks to 3x times occurrences “word sketch” in the left menu)
I have found only the option to exclude categories, tags, posts/pages, but not a menu.
Perhaps, may I use with different values the code below
add_filter('relevanssi_do_not_index', 'rlv_exclude_protected', 10, 2); function rlv_exclude_protected($exclude, $post_id) { $post = get_post($post_id); if (!empty($post->post_password)) $exclude = true; return $exclude; }
Thank you for your answer.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Exclude left menu’ is closed to new replies.