Guest User

Untitled

a guest
Dec 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_action( 'init', function() {
  2. register_post_type( 'faculty', [
  3. 'label' => 'Faculty',
  4. 'supports' => [ 'title', 'editor', 'custom-fields' ],
  5. 'public' => true,
  6. 'show_in_graphql' => true,
  7. 'graphql_single_name' => 'faculty',
  8. 'graphql_plural_name' => 'facultyMembers'
  9. ] );
  10. } );
Add Comment
Please, Sign In to add comment