Skip to content

Instantly share code, notes, and snippets.

@beatwiz
Created August 21, 2019 14:55
Show Gist options
  • Save beatwiz/4d678995e58c6d32ad4bfcd64538668d to your computer and use it in GitHub Desktop.
Save beatwiz/4d678995e58c6d32ad4bfcd64538668d to your computer and use it in GitHub Desktop.
Hide DIVI Projects CPT
<?php
/**
* This will hide the Divi "Project" post type.
* Thanks to georgiee (https://gist.github.com/EngageWP/062edef103469b1177bc#gistcomment-1801080) for his improved solution.
*/
add_filter( 'et_project_posttype_args', 'mytheme_et_project_posttype_args', 10, 1 );
function mytheme_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
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment