对于所有有问题的人Wordpress Blocks/Gutenberg, 这是我一直在寻找的解决方案。
创建新分类法时,请确保show_in_rest
到true
. 否则,它将不会显示在块编辑器中。
https://developer.wordpress.org/reference/functions/register_taxonomy/是否在REST API中包含分类法。将此设置为true,以使分类法在块编辑器中可用。
register_taxonomy(
\'new-category\',
\'post\',
[
\'public\' => false,
\'rewrite\' => false,
\'show_ui\' => true,
\'show_in_rest\' => true,
\'hierarchical\' => true,
]
);