Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active October 7, 2015 05:07
Show Gist options
  • Save jasperf/3109992 to your computer and use it in GitHub Desktop.
Save jasperf/3109992 to your computer and use it in GitHub Desktop.
Custom Post Type Slides #wordpress #cpt
/*----------------------------------------
Slider Custom Post Type
---------------------------------------------*/
add_action( 'init', 'create_slider' );
function create_slider() {
register_post_type( 'img_slideshow',
array(
'labels' => array(
'name' => __( 'Slides' ),
'singular_name' => __( 'Slide' )
),
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'hierarchical' => false,
'rewrite' => false,
'query_var' => false,
'supports' => array( 'title', 'editor', 'excerpt', 'thumbnail' ),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment