Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created July 30, 2014 14:53
Show Gist options
  • Save jpcontrerasv/6f376f7df6fd6be2f53a to your computer and use it in GitHub Desktop.
Save jpcontrerasv/6f376f7df6fd6be2f53a to your computer and use it in GitHub Desktop.
WP > Register post type
register_post_type('banner_mini', array(
'labels' => array(
'name' => __('Banners') ,
'singular_name' => __('Banner') ,
'add_new' => _x('Agregar nuevo', 'banner_mini') ,
'add_new_item' => __('Agregar nuevo banner') ,
) ,
'public' => true,
'has_archive' => false,
'show_ui' => true,
'hierarchical' => false,
'capability_type' => 'post',
'query_var' => true,
'supports' => array(
'title',
'thumbnail',
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment