custom post type LY
custom post type LY
if ( ! function_exists('jkio_cpt_lachyogauebung') ) { // Register Custom Post Type function jkio_cpt_lachyogauebung() { $labels = array( 'name' => 'Lachyoga Übungen', 'singular_name' => 'Lachyoga Übung', 'menu_name' => 'Lachyoga Übung', 'name_admin_bar' => 'Lachyoga Übung', 'archives' => '', 'attributes' => '', 'parent_item_colon' => '', 'all_items' => '', 'add_new_item' => '', 'add_new' => 'Neue Lachyoga Übung hinzufügen', 'new_item' => '', 'edit_item' => '', 'update_item' => '', 'view_item' => '', 'view_items' => '', 'search_items' => '', 'not_found' => '', 'not_found_in_trash' => '', 'featured_image' => '', 'set_featured_image' => '', 'remove_featured_image' => '', 'use_featured_image' => '', 'insert_into_item' => '', 'uploaded_to_this_item' => '', 'items_list' => '', 'items_list_navigation' => '', 'filter_items_list' => '', ); $args = array( 'label' => 'Lachyoga Übung', 'description' => 'Beschreibt eine Lachyoga Übung', 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'custom-fields', ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-smiley', 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', 'show_in_rest' => true, ); register_post_type( 'lachyogauebung', $args ); } add_action( 'init', 'jkio_cpt_lachyogauebung', 0 ); }