• Resolved Daniel Hüsken

    (@danielhuesken)


    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";
    	}

    https://www.ads-software.com/plugins/wp-term-meta/

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.