Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added term meta table to default tables to copy #16

Closed
wants to merge 81 commits into from
Closed

Added term meta table to default tables to copy #16

wants to merge 81 commits into from

Conversation

WazzaJB
Copy link

@WazzaJB WazzaJB commented Nov 23, 2016

Pretty self explanatory, term meta tables were introduced in 4.4 and need to be included in default imports.

Really pleased with this plugin, thanks all involved.

As a sidenote, anyone looking to get term meta support in the mean time can just add the following in a PHP file within wp-content/mu-plugins:

/**
 * Modify Multisite Duplicator to include term meta table
 */
add_filter('mucd_default_primary_tables_to_copy', 'add_additional_duplicate_tables');
function add_additional_duplicate_tables($tables) {
    $tables[] = 'termmeta';
    return $tables;
}

Pierre DARGHAM and others added 25 commits April 23, 2015 12:22
Use WordPress' built-in plugin/url functions so as not to break things (ssl in particular)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants