Create Custom Post type

add_action( ‘init’, ‘create_banner’ );

function create_banner() {

register_post_type( ‘banner_post’,

array(

‘labels’ => array(

‘name’ => __( ‘Banner Slider’ ),

‘singular_name’ => __( ‘slide’ )

),

‘public’ => true,

‘exclude_from_search ‘ => true,

‘hierarchical’ => true,

‘supports’ => array(‘title’, ‘editor’, ‘thumbnail’, ‘custom-fields’, ‘page-attributes’),

‘menu_icon’ => get_template_directory_uri() . ‘images/icon_slides.png’,

‘taxonomies’ => array(‘category’)

)

);

}