Initial commit.

This commit is contained in:
2025-11-24 21:33:55 +00:00
parent 14b7ade051
commit d6e9d316bc
8974 changed files with 1423277 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,20 @@
<?php
require get_template_directory() . '/inc/tgm/class-tgm-plugin-activation.php';
/**
* Recommended plugins.
*/
function halloween_gift_store_register_recommended_plugins() {
$plugins = array(
array(
'name' => __( 'Video Popup Block by WPZOOM', 'halloween-gift-store' ),
'slug' => 'wpzoom-video-popup-block',
'source' => '',
'required' => false,
'force_activation' => false,
)
);
$config = array();
tgmpa( $plugins, $config );
}
add_action( 'tgmpa_register', 'halloween_gift_store_register_recommended_plugins' );