Can't edit categories

@adastra @classyMan

I’m sorry about that. It’s a known issue that was reported, and we already have a fix scheduled for 1.5.1 coming soon:

A temporary fix to make the edit page work is to add the following code to your theme’s functions.php:

if ( ! function_exists( 'is_taxonomy_viewable' ) ) :
function is_taxonomy_viewable( $taxonomy ) {
	if ( is_scalar( $taxonomy ) ) {
		$taxonomy = get_taxonomy( $taxonomy );
		if ( ! $taxonomy ) {
			return false;
		}
	}
	return $taxonomy->publicly_queryable;
}
endif;

Please let me know if you run into any issues.

2 Likes