Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Last active June 8, 2017 09:17
Show Gist options
  • Save mrbobbybryant/e28efc0d84afbead7d0e to your computer and use it in GitHub Desktop.
Save mrbobbybryant/e28efc0d84afbead7d0e to your computer and use it in GitHub Desktop.
WordPress Custom Post Type (Simple)
<?php
function dwwp_register_post_type() {
$args = array('public'=> true, 'label'=> 'Staff');
register_post_type( 'staff', $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