Skip to content

Instantly share code, notes, and snippets.

@aubuchcl
Last active October 11, 2019 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aubuchcl/bf50822432e22eb49d4454ba26a6b5d0 to your computer and use it in GitHub Desktop.
Save aubuchcl/bf50822432e22eb49d4454ba26a6b5d0 to your computer and use it in GitHub Desktop.
headless wp blender post type
add_action('init', function() {
register_post_type('blender', [
'public' => true,
'label' => 'Blenders',
'show_in_graphql' => true,
'graphql_single_name' => 'Blender',
'graphql_plural_name' => "Blenders"
]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment