Это WordPress сайт о недвижимости. Каждый раз после добавления нового свойства число «0» появляется во всех таксономиях. Я удаляю их, но после добавления нового свойства оно возвращается снова. Версия Wordpress - 5.2.4, а PHP - 5.6.
![enter image description here](https://i.stack.imgur.com/w5zzb.png)
Эта ошибка появляется только в следующих таксономиях: property_type, offer_type , city , features.
$base_attributes = array(
(object) array(
'attribute_name' => esc_html__( 'Property type', 'myhome-core' ),
'attribute_slug' => 'property-type',
'attribute_type' => 'taxonomy',
'base' => 1,
'base_slug' => 'property_type'
),
(object) array(
'attribute_name' => esc_html__( 'Offer type', 'myhome-core' ),
'attribute_slug' => 'offer-type',
'attribute_type' => 'taxonomy',
'base' => 1,
'base_slug' => 'offer_type'
),
(object) array(
'attribute_name' => esc_html__( 'City', 'myhome-core' ),
'attribute_slug' => 'city',
'attribute_type' => 'taxonomy',
'base' => 0,
'base_slug' => ''
),
(object) array(
'attribute_name' => esc_html__( 'Features', 'myhome-core' ),
'attribute_slug' => 'features',
'attribute_type' => 'taxonomy',
'base' => 0,
'base_slug' => ''
)