wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_add_post_type_submenus is private and should not be used in themes or plugins directly.
_add_post_type_submenus › WordPress Function
Seit3.1.0
Veraltetn/v
› _add_post_type_submenus ( Keine Parameter )
| Zugriff: |
|
| Definiert in: |
|
| Codex: |
Adds submenus for post types.
Ähnliche Funktionen: add_post_type_support, get_all_post_type_supports, get_post_type_labels, post_type_supports, post_type_exists
Quellcode
function _add_post_type_submenus() {
foreach ( get_post_types( array( 'show_ui' => true ) ) as $ptype ) {
$ptype_obj = get_post_type_object( $ptype );
// Sub-menus only.
if ( ! $ptype_obj->show_in_menu || true === $ptype_obj->show_in_menu ) {
continue;
}
add_submenu_page( $ptype_obj->show_in_menu, $ptype_obj->labels->name, $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, "edit.php?post_type=$ptype" );
}
}