I updated the version to 4.3.2. The error remains for the custom taxonomies.
I built these custom taxonomies manually in the functions.php file, therefore, if there is a change to the register_taxonomy function call I can make that will correct the error, I can make it.
Here is the current code to register the taxonomy:
function add_location_taxonomy() {
// Add new "Locations" taxonomy to Posts
register_taxonomy('location', array( 'issue' , 'solution', 'ml-advert', 'page' ), array(
// Hierarchical taxonomy (like categories)
'hierarchical' => true,
'show_admin_column' => true,
// This array of options controls the labels displayed in the WordPress Admin UI
'labels' => array(
'name' => _x( 'Locations', 'taxonomy general name' ),
'singular_name' => _x( 'Location', 'taxonomy singular name' ),
'search_items' => __( 'Search Locations' ),
'all_items' => __( 'All Locations' ),
'parent_item' => __( 'Parent Location' ),
'parent_item_colon' => __( 'Parent Location:' ),
'edit_item' => __( 'Edit Location' ),
'update_item' => __( 'Update Location' ),
'add_new_item' => __( 'Add New Location' ),
'new_item_name' => __( 'New Location Name' ),
'menu_name' => __( 'Locations' ),
),
'capabilities' => array (
'manage_terms' => 'manage_categories',
'edit_terms' => 'manage_categories',
'delete_terms' => 'manage_categories',
'assign_terms' => 'assign_terms'
),
// Control the slugs used for this taxonomy
'rewrite' => array(
'slug' => 'locations', // This controls the base slug that will display before each term
'with_front' => false, // Don't display the category base before "/locations/"
'hierarchical' => true // This will allow URL's like "/locations/boston/cambridge/"
),
));
}
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]