Skip to content

Instantly share code, notes, and snippets.

@Helmi
Last active June 24, 2018 13:29
Show Gist options
  • Save Helmi/daa27ab343995b55e4778cd1b05aeb9e to your computer and use it in GitHub Desktop.
Save Helmi/daa27ab343995b55e4778cd1b05aeb9e to your computer and use it in GitHub Desktop.
Divi: "Projekte" Inhaltstyp verstecken
<?php
//
// Versteckt den Inhaltstyp Projekte im Adminbereich von WordPress beim Einsatz des Divi Builders/Themes
//
// Mehr Infos bei Divi.World unter:
// https://divi.world/projekte-aus-divi-entfernen
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