jOBS
Post type de Jobs para web.
Tipo de post para generar area de oferta de trabajo
// Register Custom Post Type function jobs_post_type() { $labels = array( 'name' => _x( 'Jobs', 'Post Type General Name', 'usagroup' ), 'singular_name' => _x( 'Job', 'Post Type Singular Name', 'usagroup' ), 'menu_name' => __( 'Jobs', 'usagroup' ), 'name_admin_bar' => __( 'Jobs', 'usagroup' ), 'archives' => __( 'Item Archives', 'usagroup' ), 'attributes' => __( 'Item Attributes', 'usagroup' ), 'parent_item_colon' => __( 'Parent Item:', 'usagroup' ), 'all_items' => __( 'All Items', 'usagroup' ), 'add_new_item' => __( 'Add New Item', 'usagroup' ), 'add_new' => __( 'Add New', 'usagroup' ), 'new_item' => __( 'New Item', 'usagroup' ), 'edit_item' => __( 'Edit Item', 'usagroup' ), 'update_item' => __( 'Update Item', 'usagroup' ), 'view_item' => __( 'View Item', 'usagroup' ), 'view_items' => __( 'View Items', 'usagroup' ), 'search_items' => __( 'Search Item', 'usagroup' ), 'not_found' => __( 'Not found', 'usagroup' ), 'not_found_in_trash' => __( 'Not found in Trash', 'usagroup' ), 'featured_image' => __( 'Featured Image', 'usagroup' ), 'set_featured_image' => __( 'Set featured image', 'usagroup' ), 'remove_featured_image' => __( 'Remove featured image', 'usagroup' ), 'use_featured_image' => __( 'Use as featured image', 'usagroup' ), 'insert_into_item' => __( 'Insert into item', 'usagroup' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'usagroup' ), 'items_list' => __( 'Items list', 'usagroup' ), 'items_list_navigation' => __( 'Items list navigation', 'usagroup' ), 'filter_items_list' => __( 'Filter items list', 'usagroup' ), ); $args = array( 'label' => __( 'Job', 'usagroup' ), 'labels' => $labels, 'supports' => array( 'title', 'editor' ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'menu_icon' => 'dashicons-id', 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'jobs', $args ); } add_action( 'init', 'jobs_post_type', 0 );