Add Workflow tab with Auto Upload Images feature: - Add new Workflow settings tab - Implement auto image upload functionality - Add error logging and handling - Add file type validation

This commit is contained in:
Marcus Quinn
2025-03-15 02:01:12 +00:00
parent 48cd8d6ac9
commit d60a2891f2
5 changed files with 196 additions and 22 deletions

View File

@ -30,6 +30,7 @@ register_activation_hook( __FILE__, 'wpa_superstar_activate' );
// Load core functionality
require_once plugin_dir_path( __FILE__ ) . 'includes/speed-functions.php';
require_once plugin_dir_path(__FILE__) . 'includes/class-wpa-superstar-auto-upload.php';
// Load admin UI
if ( is_admin() ) {
@ -86,4 +87,7 @@ function wpa_superstar_lazy_load_assets() {
);
}
// Hook the function to appropriate WordPress action
add_action( 'wp_enqueue_scripts', 'wpa_superstar_lazy_load_assets' );
add_action( 'wp_enqueue_scripts', 'wpa_superstar_lazy_load_assets' );
// Initialize classes
$wpa_superstar_auto_upload = new WPA_Superstar_Auto_Upload();