How can I remove my download post from website search results.

Viewing 6 posts - 1 through 6 (of 6 total)
#122517

Afique X
Participant

example

How can I remove the download posts from my search result which is shown above?

You can also check the issue here: https://courseportals.com/?s=gordon+ramsay

  • This topic was modified 4 years, 1 month ago by Afique X.
#122656

Nayeem Riddhi
Moderator

Hi,

Please add the following code at the end of your active theme’s functions.php

function noindex_for_wpdm()
{
    if ( is_singular( 'wpdmpro' ) ) {
        echo '<meta name="robots" content="noindex, nofollow">';
    }
}

add_action('wp_head', 'noindex_for_wpdm');

I hope, it will help you.

Thanks.

#123167

Afique X
Participant

It’s not working! I think you didn’t understand my problem. Although I want this want to happen which is excluding my download posts from google search I also want to remove download posts from my internal site search. So that people don’t see the download posts when they search inside my website.

#125530

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, sorry for some late.

#144143

Duncan
Participant
This reply has been marked as private.
#144285

Nayeem Riddhi
Moderator

Thank you, we shall try it

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

The topic ‘How can I remove my download post from website search results.’ is closed to new replies.