Last active
June 24, 2018 13:29
-
-
Save Helmi/daa27ab343995b55e4778cd1b05aeb9e to your computer and use it in GitHub Desktop.
Divi: "Projekte" Inhaltstyp verstecken
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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