We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proper capabilities need to be set for the Courier Notice post type.
In order to make a Gutenberg block for Courier, we need the post type registration to set show_in_rest as TRUE.
show_in_rest
The text was updated successfully, but these errors were encountered:
To go along with this, we need to see if we can limit Courier Notices to only use the Classic Editor
https://gist.github.com/uptimizt/b99ef36aabab1ff641414e593e73d040 For anybody arriving here via a web search, the filter name in WordPress 5.0 is use_block_editor_for_post_type instead of gutenberg_can_edit_post_type. Everything here --WordPress/gutenberg#7595 add_filter( 'use_block_editor_for_post_type', '__return_false' );
use_block_editor_for_post_type
gutenberg_can_edit_post_type.
add_filter( 'use_block_editor_for_post_type', '__return_false' );
Sorry, something went wrong.
I can take care of this one.
aaronware
No branches or pull requests
Proper capabilities need to be set for the Courier Notice post type.
In order to make a Gutenberg block for Courier, we need the post type registration to set
show_in_rest
as TRUE.The text was updated successfully, but these errors were encountered: