Forked from mrbobbybryant/gist:f1714ab93b8171947ed7
Created
October 15, 2017 11:39
-
-
Save arafathusayn/53595a737f929860338c08361b0d028d to your computer and use it in GitHub Desktop.
WordPress Custom Post Type (Using $singular and $plural)
This file contains 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