How to exclude downloads from search results

Viewing 4 posts - 1 through 4 (of 4 total)
#146795

Rieke P
Participant

Hi,

now that I have created a few download items, I notice that they show up in the search results or when you click on a tag. How do I prevent the items from showing up all over the place? I don’t want my website visitors to see these pages.

Thank you!!

#147061

Nayeem Riddhi
Moderator

OK, if you want to exclude download posts in the search result in your site, please put below code in your theme functions.php,

add_action( 'init', 'wpdm_custom_type', 99 );
function wpdm_custom_type() {
    global $wp_post_types;
    if ( post_type_exists( 'wpdmpro' ) ) {
        $wp_post_types['wpdmpro']->exclude_from_search = true;
    }
}

thanks

#147073

Rieke P
Participant

Fantastic, thank you for the quick and helpful response!

#147126

Nayeem Riddhi
Moderator

Thank you. we are always here for giving you services. If you like our services, if you have free time, please give us a 5* here, https://wordpress.org/support/plugin/download-manager/reviews/, we will be very encouraged in our work.

Thanks.

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘How to exclude downloads from search results’ is closed to new replies.