Skip to content
Public Ticket #22532

Remove Portfolio from search

Conversation thread

Fjura replied

Customer Reply

Hello,

thank you, but is there no other way of myself fixing it with your help? 

thank you

PenciDesign Supporter replied

Staff Reply

Hi,

For this case, please send me your WordPress admin account in a PRIVATE reply.
I'll log in and try to help you.

Regards,
PenciDesign.



PenciDesign Supporter replied

Staff Reply

Hi,

Please add the following code to the Soledad child theme "functions.php" file or via the Code Snippet plugin here:

add_action( 'init', 'fjura_update_my_custom_type', 99 );
function fjura_update_my_custom_type() {
    global $wp_post_types;     if ( post_type_exists( 'portfolio' ) ) {         // exclude from search results
        $wp_post_types['portfolio']->exclude_from_search = true;
    }
}

Regards,
PenciDesign.



Fjura started the conversation

Conversation Start

Hello,

may I ask, is it possible to remove Portfolio pages from the search result page? Thank you

Want to join this conversation or access attachments? Sign in first.