Skip to content

Instantly share code, notes, and snippets.

@faisalhmohd
Last active June 7, 2016 12:09
Show Gist options
  • Save faisalhmohd/e38a5450b42109cf6331a9840e4c8bb8 to your computer and use it in GitHub Desktop.
Save faisalhmohd/e38a5450b42109cf6331a9840e4c8bb8 to your computer and use it in GitHub Desktop.
[WordPress] New post type on dashboard menu
add_action( 'init', 'register_custom_post_type' );
function register_custom_post_type() {
register_post_type( 'member',
array(
'labels' => array(
'name' => __( 'Members' ),
'singular_name' => __( 'Member' ),
'add_new' => __( 'Add New Member' ),
'add_new_item' => __( 'Add New Member' ),
),
'public' => true,
'has_archive' => true,
'menu_icon' => 'dashicons-businessman',
'supports' => array('title','thumbnail')
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment