[Resolved] Custom taxonomy / show in editor

Home Forums Support [Resolved] Custom taxonomy / show in editor

Home Forums Support Custom taxonomy / show in editor

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #2372024
    Jan

    Hi there,

    I’m using a CPT called “chat” that comes with a chat-category (custom taxonomy). Unfortunately, the category is missing in the settings menu of the WP editor ;-(

    The agrs of the chat category are as follows:

    $args = array(
    	'labels'                     => $labels,
    	'hierarchical'               => true,
    	'public'                     => true,
    	'show_ui'                    => true,
    	'show_admin_column'          => true,
    	'show_in_nav_menus'          => true,
    	'show_tagcloud'              => false,
    );

    What is the missing to make the category show up in the settings also?

    Thanks,
    Jan

    #2372037
    David
    Staff
    Customer Support

    Hi there,

    you require this arg:

    'show_in_rest' => true,

    #2372046
    Jan

    Great. Thanks David

    #2372054
    Jan

    PS: any chance you can take a look into this threat David? I understand from Fernando that your support has limitations and I do respect that. Any thoughts on where to point a developer towards in order to get this resolved quickly would be much appreciated.

    #2372068
    David
    Staff
    Customer Support

    Glad to be of help.
    I’ll take a look at the other topic

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.