Created
June 27, 2017 14:09
-
-
Save Shininglow/9784ae19f482b70e16622069cf1c1fd3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
?php | |
/** | |
* Default manifest file | |
* | |
* @var array | |
*/ | |
$settings = array( | |
'xml' => array( | |
'enabled' => true, | |
'use_upload' => true, | |
'path' => false, | |
), | |
'import' => array( | |
'chunk_size' => $this->chunk_size, | |
), | |
'remap' => array( | |
'post_meta' => array(), | |
'term_meta' => array(), | |
'options' => array(), | |
), | |
'export' => array( | |
'message' => __( 'or export all content with TemplateMonster Data Export tool', 'cherry-data-importer' ), | |
'logo' => $this->url( 'assets/img/monster-logo.png' ), | |
'options' => array(), | |
), | |
'success-links' => array( | |
'home' => array( | |
'label' => __( 'View your site', 'cherry-data-importer' ), | |
'type' => 'primary', | |
'target' => '_self', | |
'url' => home_url( '/' ), | |
), | |
'customize' => array( | |
'label' => __( 'Customize your theme', 'cherry-data-importer' ), | |
'type' => 'default', | |
'target' => '_self', | |
'url' => admin_url( 'customize.php' ), | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment