• Resolved roodude

    (@roodude)


    After updating to 3.1.4, the actions that involve changing terms on a CPT with a custom taxonomy no longer work. It just says “No [custom taxonomy name] terms found” It does actually populate the name of the custom taxonomy, which tells me it knows which one I want, it just doesn’t show any terms.

    I can confirm that the custom taxonomy is hierarchical, it is set as the default taxonomy under PublishPress Future > Post Types, and that rolling back to 3.1.3 works as intended.

    Here’s the code that defines the custom taxonomy if that helps:

    register_taxonomy(
    	'obituary_category',
    	'obituary',
    	array(
    		'hierarchical' => true,
    		'label' => 'Obituary Categories',
    		'singular_name' => 'Obituary Category',
    		"rewrite" => true,
    		"query_var" => true
    		)
    	);
    • This topic was modified 1 year, 3 months ago by roodude.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘No custom taxonomy terms found’ is closed to new replies.