• Hi,

    I had to find a way to exclude images in custom media post types from search results and I spent more than 4 days looking for a solution when the solution was right here with this amazing plugin and this hook in functions.php:

    add_filter(‘relevanssi_do_not_index’, ‘rlv_exclude_cat’, 10, 2);
    function rlv_exclude_cat($exclude, $post_id) {
    if (has_term( no_search, category_media, $post_id )) $exclude = true;
    return $exclude;
    }

    no_search is the category name and category_media is the taxonomy for my custom media category

    Even more, this plugin does a lot more than this. Fixing my problem I found out how many futures it also has.

    As a plus beside a good plugin with a great documented website where you can find lots of things, the author helped me via his website in a matter of seconds. Really, he just replied in a few seconds and helped me even if I was using the free version of the plugin not mentioning that my problem was more related to some other plugin.

    Friendly, helpful and a genius ??

  • The topic ‘Best plugin with the best and fast support!’ is closed to new replies.