Last active
October 11, 2019 18:34
-
-
Save aubuchcl/bf50822432e22eb49d4454ba26a6b5d0 to your computer and use it in GitHub Desktop.
headless wp blender post type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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