This piece of code will help you hide the “projects” custom post type in DiVi.
/* HIDE THE "PROJECTS" POST TYPE
/* Thanks to Georgiee (https://gist.github.com/EngageWP/062edef103469b1177bc#gistcomment-1801080) for his 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
));
}
/* ===================================================================================== */
0 reacties