Remove ‘Projects’ post type in Divi

Aug 18, 2020 | Wordpress

Divi is great, but you don’t always need all the features. I often find myself not using the “Projects” post type, and prefer to hide it to keep the back end simple for my clients. It’s easy to do, just add the following code to the end of your functions.php file:

// HIDE DIVI PROJECTS FROM BACK END
add_filter( 'et_project_posttype_args', 'joy_et_project_posttype_args', 10, 1 );
function joy_et_project_posttype_args( $args ) {
	return array_merge( $args, array(
		'public'              => false,
		'exclude_from_search' => false,
		'publicly_queryable'  => false,
		'show_in_nav_menus'   => false,
		'show_ui'             => false
	));
}

Did you find this helpful? Do you have any questions? We’d love to hear from you – leave a comment below!

Browse More Hints & Tips

Tips for grabbing the perfect .com domain name

Tips for grabbing the perfect .com domain name

Looking for the perfect .com domain name? You’re in the right place! Below we’ll share our best tips to help you grab a name that’s memorable, easy, and SEO-friendly — something you’ll be proud of and that Google (and AIs like ChatGPT) will love too. 1. Keep it short...

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *