Hi,
my site has been down for a few days since the WordPress update. it appears they have implemented the taxonomy meta feature which now clashes with your theme. however there is also a slight difference: they use the ‘term’ parameter whilst you use the ‘taxonomy’ parameter
/wp-includes/taxonomy.php
function update_term_meta( $term_id, $meta_key, $meta_value, $prev_value = '' ) {
..
update_metadata( 'term', $term_id, $meta_key, $meta_value, $prev_value );
whereas you have
/wp-content/themes/Legenda_v2.2/legenda/framework/inc/taxonomy-metadata.php
function add_term_meta($term_id, $meta_key, $meta_value, $unique = false) {
return add_metadata('taxonomy', $term_id, $meta_key, $meta_value, $unique);
}
as such I didn’t want to just delete your functions (or try namespacing them to keep them separate) as i don’t know what that key difference will affect?
I understand you can login and fix the file, but I’d be grateful also to know what the fix is? Also will we likely see an update to the theme to fix this soon?
thanks