Skip to content

Instantly share code, notes, and snippets.

@Codevz
Last active June 18, 2022 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Codevz/fc84a20e60c69216d8f196b77d2da4d8 to your computer and use it in GitHub Desktop.
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/
<?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