Created
December 24, 2016 04:34
-
-
Save saimonh3/4593f7691f2fbb66c66a60163042e915 to your computer and use it in GitHub Desktop.
WordPress Custom Post Type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Exit if accessed directly | |
| if ( ! defined( 'ABSPATH' ) ) { | |
| exit; | |
| } | |
| function dwwp_register_post_type() { | |
| $singular = 'Job'; | |
| $plural = 'Jobs'; | |
| $slug = str_replace( ' ', '_', strtolower( $singular ) ); | |
| $labels = array( | |
| 'name' => $plural, | |
| 'singular_name' => $singular, | |
| 'add_new' => 'Add New', | |
| 'add_new_item' => 'Add New ' . $singular, | |
| 'edit' => 'Edit', | |
| 'edit_item' => 'Edit ' . $singular, | |
| 'new_item' => 'New ' . $singular, | |
| 'view' => 'View ' . $singular, | |
| 'view_item' => 'View ' . $singular, | |
| 'search_term' => 'Search ' . $plural, | |
| 'parent' => 'Parent ' . $singular, | |
| 'not_found' => 'No ' . $plural .' found', | |
| 'not_found_in_trash' => 'No ' . $plural .' in Trash' | |
| ); | |
| $args = array( | |
| 'labels' => $labels, | |
| 'public' => true, | |
| 'publicly_queryable' => true, | |
| 'exclude_from_search' => false, | |
| 'show_in_nav_menus' => true, | |
| 'show_ui' => true, | |
| 'show_in_menu' => true, | |
| 'show_in_admin_bar' => true, | |
| 'menu_position' => 10, | |
| 'menu_icon' => 'dashicons-businessman', | |
| 'can_export' => true, | |
| 'delete_with_user' => false, | |
| 'hierarchical' => false, | |
| 'has_archive' => true, | |
| 'query_var' => true, | |
| 'capability_type' => 'post', | |
| 'map_meta_cap' => true, | |
| // 'capabilities' => array(), | |
| 'rewrite' => array( | |
| 'slug' => $slug, | |
| 'with_front' => true, | |
| 'pages' => true, | |
| 'feeds' => true, | |
| ), | |
| 'supports' => array( | |
| 'title', | |
| 'editor', | |
| 'author', | |
| 'custom-fields' | |
| ) | |
| ); | |
| register_post_type( $slug, $args ); | |
| } | |
| add_action( 'init', 'dwwp_register_post_type' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment