This file contains 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 | |
/** | |
* With this function you can run your PHP code after importing slider in demo importer. | |
* | |
*/ | |
function my_prefix_after_import_slider() { | |
// Run you custom PHP codes here. |
This file contains 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 | |
/** | |
* With this function you can run your PHP code after importing content in demo importer. | |
* | |
*/ | |
function codevz_after_import_content() { | |
// Run you custom PHP codes here. |
This file contains 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 | |
/** | |
* With this function you can run your PHP code after importing widgets in demo importer. | |
* | |
*/ | |
function my_prefix_after_import_widgets() { | |
// Run you custom PHP codes here. |
This file contains 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 | |
/** | |
* With this function you can modify imported theme options and change any options you want. | |
* | |
* @var $options = imported theme options array | |
*/ | |
function my_prefix_after_import_theme_options( $options ) { | |
// Replace website logo after importing demo. |
This file contains 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 | |
/** | |
* With this function you can add any content or php codes after mobile header. | |
*/ | |
function my_prefix_after_mobile_header() { | |
echo 'This is a custom content text.'; | |
} |
This file contains 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 | |
/** | |
* With this function you can add any content or php codes before mobile header. | |
*/ | |
function my_prefix_before_mobile_header() { | |
echo 'This is a custom content text.'; | |
} |
NewerOlder