• I’m trying to add categories and tags to a custom post type, so added this line:-

    'taxonomies' => array('post_tag', 'category'),

    however they are not showing up in the UI am I missing anything, the full register post types code is below.

    register_post_type( 'pg_offers',
    		array(
    			'show_ui' => true,
    			'labels' => array(
    				'name' => __( 'Offers' ),
    				'singular_name' => __( 'Offer' ),
    				'add_new' => __( 'Add New Offer' ),
    				'add_new_item' => __( 'Add New Offer' ),
    				'new_item' => __( 'New Offer' ),
    				'edit' => __( 'Edit Offers' ),
    				'edit_item' => __( 'Edit Offer' ),
    				'view' => __( 'View Offer' ),
    				'view_item' => __( 'View Offer' ),
    				'search_items' => __( 'Search Offer' ),
    				'not_found' => __( 'No Offers found' ),
    				'not_found_in_trash' => __( 'No Offers found in Trash' ),
    				'parent' => __( 'Parent Offer' )
    			),
    			'exclude_from_search' => false,
    			'taxonomies' => array('post_tag', 'category'),
    			'public' => true,
    			'has_archive' => false,
     			'show_ui' => true,
    			'capability_type' => 'post',
     			'hierarchical' => false,
    			'rewrite' => array('slug' => 'offer'),
    			'supports' => array(
    				'title',
    				'editor',
    				'excerpt',
    				'thumbnail',
    				'custom-fields'
    			)
    		)
    	);
Viewing 1 replies (of 1 total)
  • Thread Starter stephenkeable

    (@stephenkeable)

    Just trying to bump this up again, is there anything else in functions.php that can override the taxonomies setting, or anything I should flush to be able to see the taxonomies in the UI when I add new posts?

Viewing 1 replies (of 1 total)
  • The topic ‘Taxonomies not showing in UI’ is closed to new replies.