Artiste
Post contents based on Artistes
// Register Custom Post Type function artist_post_type() { $labels = array( 'name' => _x( 'Artistes', 'Post Type General Name', 'artist_gheepawon' ), 'singular_name' => _x( 'Ariste', 'Post Type Singular Name', 'artist_gheepawon' ), 'menu_name' => __( 'Artiste', 'artist_gheepawon' ), 'name_admin_bar' => __( 'Artiste', 'artist_gheepawon' ), 'archives' => __( 'Artiste Archives', 'artist_gheepawon' ), 'attributes' => __( 'Artiste Attributes', 'artist_gheepawon' ), 'parent_item_colon' => __( 'Parent Artiste:', 'artist_gheepawon' ), 'all_items' => __( 'All Artistes', 'artist_gheepawon' ), 'add_new_item' => __( 'Add New Artiste', 'artist_gheepawon' ), 'add_new' => __( 'Add New', 'artist_gheepawon' ), 'new_item' => __( 'New Artiste', 'artist_gheepawon' ), 'edit_item' => __( 'Edit Artiste', 'artist_gheepawon' ), 'update_item' => __( 'Update Artiste', 'artist_gheepawon' ), 'view_item' => __( 'View Artiste', 'artist_gheepawon' ), 'view_items' => __( 'View Artistes', 'artist_gheepawon' ), 'search_items' => __( 'Search Artiste', 'artist_gheepawon' ), 'not_found' => __( 'Not found', 'artist_gheepawon' ), 'not_found_in_trash' => __( 'Not found in Trash', 'artist_gheepawon' ), 'featured_image' => __( 'Featured Image', 'artist_gheepawon' ), 'set_featured_image' => __( 'Set featured image', 'artist_gheepawon' ), 'remove_featured_image' => __( 'Remove featured image', 'artist_gheepawon' ), 'use_featured_image' => __( 'Use as featured image', 'artist_gheepawon' ), 'insert_into_item' => __( 'Insert into Artiste', 'artist_gheepawon' ), 'uploaded_to_this_item' => __( 'Uploaded to this Artiste', 'artist_gheepawon' ), 'items_list' => __( 'Artistes list', 'artist_gheepawon' ), 'items_list_navigation' => __( 'Artistes list navigation', 'artist_gheepawon' ), 'filter_items_list' => __( 'Filter Artistes list', 'artist_gheepawon' ), ); $args = array( 'label' => __( 'Ariste', 'artist_gheepawon' ), 'description' => __( 'Artiste content posts', 'artist_gheepawon' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'custom-fields', 'post-formats' ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, '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', ); register_post_type( 'artiste', $args ); } add_action( 'init', 'artist_post_type', 0 );