Disable portfolio page entirely

Hi there,

I would like to disable the portfolio page entirely. Is there a way to do that?

Thanks in advance!

Hi @casenine,

Thanks for reaching out.

To fully remove/disable the portfolio page, we need to unregister the Portfolio Custom Post type, please add this code in your child theme functions.php.

function delete_post_type(){
    unregister_post_type( 'x-portfolio' );
}
add_action('init','delete_post_type', 100); 

Please note that custom development is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.

Hope that helps.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.