Bug in multisite if switch_to_blog() used
-
IF you are in a Multisite the switch_to_blog function will not work krrectly with WP Term Meta. All data will be stored in main site termmeta table.
To fix this you mus change the add_termmeta_to_db_object() method of WP_Term_Meta class to:
public function add_termmeta_to_db_object() { $this->db->termmeta = "{$this->db->prefix}termmeta"; $this->db->tables[] = "termmeta"; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bug in multisite if switch_to_blog() used’ is closed to new replies.