Skip to content

Instantly share code, notes, and snippets.

@jasonbahl
Last active December 14, 2017 16:52
Show Gist options
  • Save jasonbahl/a8a56555d9360e3b6c6919e24a3fdc6d to your computer and use it in GitHub Desktop.
Save jasonbahl/a8a56555d9360e3b6c6919e24a3fdc6d to your computer and use it in GitHub Desktop.
add_action( 'init', function() {
register_post_type( 'faculty', [
'label' => 'Faculty',
'supports' => [ 'title', 'editor', 'custom-fields' ],
'public' => true,
'show_in_graphql' => true,
'graphql_single_name' => 'faculty',
'graphql_plural_name' => 'facultyMembers'
] );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment