Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require get_template_directory() . '/inc/wpes-envato-theme-update.php';
- if( ! function_exists( 'marstheme_theme_update' ) ){
- function marstheme_theme_update() {
- global $marstheme_global_data;
- $purchase_code = isset( $marstheme_global_data['purchase_code'] ) ? $marstheme_global_data['purchase_code'] : null;
- $access_token = isset( $marstheme_global_data['access_token'] ) ? $marstheme_global_data['access_token'] : null;
- if( ! empty( $purchase_code ) && ! empty( $access_token ) ){
- new WPES_Envato_Theme_Update( basename( get_template_directory() ) , $purchase_code , $access_token , false );
- }
- }
- add_action( 'init' , 'marstheme_theme_update' );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement