Skip to content

Instantly share code, notes, and snippets.

@shahidulislamus
Created January 25, 2015 06:19
Show Gist options
  • Save shahidulislamus/6f4e91bd92d45e7452a7 to your computer and use it in GitHub Desktop.
Save shahidulislamus/6f4e91bd92d45e7452a7 to your computer and use it in GitHub Desktop.
hear a slider post type
function slider_custom_post(){
register_post_type('slider',array(
'public'=>true,
'label'=>'slider',
'labels'=>array(
'name'=>'slider',
'singular_name'=>'slide',
'add_new'=>'add a new slide',
),
'supports'=>array(
'title','thumbnail','excerpt',
),
));
}
add_action('init','slider_custom_post');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment