build a custom wordpress slider using a custom post type
/******** slider in dashboard ********/ /****** paste into functions.php ******/ function my_custom_sliders_posttype(){ $args = array( 'labels'=> array( 'name'=>'sliders', 'singular_name'=> 'slider', 'menu_name'=>'sliders', 'name_admin_bar'=> 'sliders', 'all_items' =>'View all sliders', 'add_new'=> 'Add New sliders' ), 'description' =>"This post type is for sliders", 'public' => true, 'exclude_from_search'=>false, 'publicly_queryable'=> true, 'show_ui' => true, 'show_in_menu'=> true, 'show_in_admin_bar'=> true, 'menu_position'=>6, 'capability_type'=> 'page', 'supports'=> array( 'title', 'editor', 'author...