Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save flayder/c612127d32c145f3fc2a to your computer and use it in GitHub Desktop.

Select an option

Save flayder/c612127d32c145f3fc2a to your computer and use it in GitHub Desktop.
function register_post_type() {
$args = array( 'public' => true, 'label' => 'Job Listing' );
register_post_type( 'job', $args );
}
add_action( 'init', 'register_post_type' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment