I created a message type with CPT UI :
add_action( 'init', 'cptui_register_my_cpts_matratze' ); function cptui_register_my_cpts_matratze() { $labels = array( "name" => __( 'Matratzen', '' ), "singular_name" => __( 'Matratze', '' ), ); $args = array( "label" => __( 'Matratzen', '' ), "labels" => $labels, "description" => "", "public" => true, "publicly_queryable" => true, "show_ui" => true, "show_in_rest" => false, "rest_base" => "", "has_archive" => true, "show_in_menu" => true, "exclude_from_search" => false, "capability_type" => "post", "map_meta_cap" => true, "hierarchical" => false, "rewrite" => array( "slug" => "matratze", "with_front" => true ), "query_var" => true, "supports" => array( "title", "editor", "thumbnail", "excerpt", "trackbacks", "custom-fields", "comments", "revisions", "author", "page-attributes", "post-formats" ), "taxonomies" => array( "category", "post_tag" ), ); register_post_type( "matratze", $args );
However, when I want to access categories by reference in my Frontend, I do not receive messages.
For example, when you click "I get nothing":
Category
The message is included and has a DaMi category:
Message
Is my CPT UI Post Type incorrectly configured? Any suggestions what am I doing wrong?