I wanted to know do i group my custom post types to appear together in a group in the wordpress back end menu bar like this below in the picture what code do i have to use in my functions.php so that i can give my custom post types a nice look and feel:
Currently I am using a custom plugin to add functions and it looks like this
<?php
/**
* Plugin Name: Custom Functions
* Plugin URI: http://localhost/
* Description: This is an awesome custom plugin with functionality that I'd like to keep when switching Themes.
* Author: Phantom.omaga
* Version: 0.1.0
*/
/* Place custom code below this line. */
add_action( 'init', 'create_post_type' );
function create_post_type() {
/*Custom post type Series has been decleared here*/
register_post_type( 'series',
array(
'labels' => array(
'name' => __( 'Series' ),
'singular_name' => __( 'Series' )
),
'public' => true,
'menu_position' => 40,
'rewrite' => array('slug' => 'Series')
)
);
/*Custom post type Episodes has been decleared here*/
register_post_type( 'epsodes',
array(
'labels' => array(
'name' => __( 'Episodes' ),
'singular_name' => __( 'Episode' )
),
'public' => true,
'menu_position' => 41,
'rewrite' => array('slug' => 'Episodes')
)
);
/*Custom post type Mirrors has been decleared here*/
register_post_type( 'Mirrors',
array(
'labels' => array(
'name' => __( 'Mirrors' ),
'singular_name' => __( 'Mirror' )
),
'public' => true,
'menu_position' => 41,
'rewrite' => array('slug' => 'Mirror')
)
);
}
/* Place custom code above this line. */
?>