Snippets: Adding Custom Post Type with Categories to Wordpress

add_action('init', 'snippet_register_post_type');
    
    function snippet_register_post_type() {
    register_post_type('mobile', array(
        'labels' => array(
            'name' => 'Mobile',
            'singular_name' => 'Mobile',
            'add_new' => 'Add new Mobile',
            'edit_item' => 'Edit Mobile',
            'new_item' => 'New Mobile',
            'view_item' => 'View Mobile',
        ),
    'public' => true,
    'supports' => array(
        'title',
        'thumbnail',
        'editor'
    ),
    'has_archive' => true,
    'hierarchical' => true,
    'taxonomies' => array('category') // Syntax for adding Categories
    ));
    }
http://codex.wordpress.org/Post_Types

No comments:

Post a Comment