Last active
June 18, 2022 10:19
-
-
Save Codevz/fc84a20e60c69216d8f196b77d2da4d8 to your computer and use it in GitHub Desktop.
XTRA WP Theme - Action hook run your PHP code after importing slider in demo importer, https://xtratheme.com/
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. | |
} | |
add_action( 'codevz/importer/after_import_slider', 'my_prefix_after_import_slider' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment