Last active
June 18, 2022 10:19
-
-
Save Codevz/2df57fca97949d6e312ed25afac9964e to your computer and use it in GitHub Desktop.
XTRA WP Theme - Action hook run your PHP code after importing content 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 content in demo importer. | |
* | |
*/ | |
function codevz_after_import_content() { | |
// Run you custom PHP codes here. | |
} | |
add_action( 'codevz/importer/after_import_content', 'codevz_after_import_content' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment