Resume
Personal resume information
// Register Custom Post Type function resumes_post_type() { $labels = array( 'name' => 'Resumes', 'singular_name' => 'Resume', 'menu_name' => 'Resume', 'name_admin_bar' => 'Resume', 'archives' => 'Item Archives', 'attributes' => 'Item Attributes', 'parent_item_colon' => 'Parent Resume:', 'all_items' => 'All Resumes', 'add_new_item' => 'Add New Resume', 'add_new' => 'New Resume', 'new_item' => 'New Item', 'edit_item' => 'Edit Resume', 'update_item' => 'Update Resume', 'view_item' => 'View Resume', 'view_items' => 'View Items', 'search_items' => 'Search Resumes', 'not_found' => 'No Resumes found', 'not_found_in_trash' => 'No Resumes found in Trash', 'featured_image' => 'Featured Image', 'set_featured_image' => 'Set featured image', 'remove_featured_image' => 'Remove featured image', 'use_featured_image' => 'Use as featured image', 'insert_into_item' => 'Insert into item', 'uploaded_to_this_item' => 'Uploaded to this item', 'items_list' => 'Items list', 'items_list_navigation' => 'Items list navigation', 'filter_items_list' => 'Filter items list', ); $capabilities = array( 'edit_post' => 'edit_post', 'read_post' => 'read_post', 'delete_post' => 'delete_post', 'edit_posts' => 'edit_posts', 'edit_others_posts' => 'edit_others_posts', 'publish_posts' => 'publish_posts', 'read_private_posts' => 'read_private_posts', ); $args = array( 'label' => 'Resume', 'description' => 'Personal resume pages', 'labels' => $labels, 'supports' => array( 'thumbnail', 'custom-fields' ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capabilities' => $capabilities, ); register_post_type( 'resume', $args ); } add_action( 'init', 'resumes_post_type', 0 );