Thanks for considering this issue. The problem perpetuated after I installed Smush or reSmush plugin to test-optimize some images.
here is one of the taxonomies
<?php
add_action( 'init', 'register_staxo_en', 10 );
function register_staxo_en() {
register_taxonomy( "en",
array (
0 => 'post',
),
array (
'name' => 'en',
'description' => '',
'labels' =>
array (
'name' => 'Categories',
'singular_name' => 'Category',
'search_items' => 'Search Categories',
'popular_items' => 'Popular Categories',
'all_items' => 'All Categories',
'parent_item' => 'Parent Category',
'parent_item_colon' => 'Parent Category:',
'edit_item' => 'Edit Category',
'view_item' => 'View Category',
'update_item' => 'Update Category',
'add_new_item' => 'Add New Category',
'new_item_name' => 'New Category Name',
'separate_items_with_commas' => 'Separate categories with commas',
'add_or_remove_items' => 'Add or remove categories',
'choose_from_most_used' => 'Choose from the most used categories',
'not_found' => 'No Categories found',
'no_terms' => 'No Categories',
'items_list_navigation' => 'Categories list navigation',
'items_list' => 'Categories list',
'most_used' => 'Most Used',
'back_to_items' => '← Back to Categories',
),
'public' => true,
'publicly_queryable' => true,
'hierarchical' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_tagcloud' => true,
'show_in_quick_edit' => true,
'show_admin_column' => true,
'capabilities' =>
array (
'manage_terms' => 'manage_categories',
'edit_terms' => 'manage_categories',
'delete_terms' => 'manage_categories',
'assign_terms' => 'edit_posts',
),
'rewrite' =>
array (
'slug' => 'en',
'with_front' => true,
'hierarchical' => true,
'ep_mask' => 0,
),
'query_var' => 'en',
'update_count_callback' => '',
'show_in_rest' => true,
'rest_base' => '',
'rest_controller_class' => '',
'sort' => false,
) );
}
// Display Terms with Posts: content, excerpt
// Display Terms Before text: Category:
// Display Terms After text:
/**Admin List screens for these post type(s) will have a filter list dropdown:
post
with wp_dropdown_categories parameters:
array (
'taxonomy' => 'en',
'show_option_all' => 'All Categories',
'orderby' => 'name',
'order' => 'ASC',
'show_count' => false,
'hide_empty' => false,
'hide_if_empty' => false,
'selected' => filter_input( INPUT_GET, \'en\', FILTER_SANITIZE_STRING ),
'hierarchical' => true,
'name' => 'en',
'value_field' => 'slug',
)
**/
/**Terms control parameters set.
Applies to posts with status: Published and Future only
Notifications only if outside bounds will be given and user cannot change terms.
No minimum number of terms.
Maximum number of terms set to 2.
**/
I have performed additional tests and CTR works fine with featured posts uploaded for new regular posts. Seems that the conflict is only with the Feedzy plugin importing posts from feeds. Whenever I include custom category in the import, the featured image gets out of reach, saying “There has been a critical error on this website.” End the error is in the first post.