Remove Portfolio

Hello! I do not use the portfolio section of my website, but there is still a dummy portfolio page that is indexed by Google. How do I get rid of it? Here is the URL: https://rentwear.com/portfolio-item/

Thanks,

Connor

Hello Connor,

Please install and activate the child theme and login through FTP then edit the functions.php then add this code:

function delete_post_type(){
    unregister_post_type( 'x-portfolio' );
    unregister_taxonomy( 'portfolio-tag' );
    unregister_taxonomy( 'portfolio-category' );
}
add_action('init','delete_post_type', 9999);

Hope this helps.

2 Likes

Sadly - I’m just a marketer (not a developer) and I don’t feel comfortable SFTPing in and editing files.

I figured it out. Thanks!

Glad to hear!

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