You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If wp_update_term() is called, to update a term outside of the admin screen, the save_meta function is run from the edit_term action, causing the image meta to be deleted.
There is a line that says: // Bail if not updating meta_key
But it doesn't actually bail, proceeding to call $this->set_meta, which then calls delete_term_meta().
The text was updated successfully, but these errors were encountered:
If
wp_update_term()
is called, to update a term outside of the admin screen, the save_meta function is run from theedit_term
action, causing the image meta to be deleted.There is a line that says:
// Bail if not updating meta_key
But it doesn't actually bail, proceeding to call $this->set_meta, which then calls delete_term_meta().
The text was updated successfully, but these errors were encountered: