Welcome to Nexton WordPress Labs. This is your first post. Edit or delete it, then start writing!
/** * Automatically trigger Starter Templates sync if local sub-site cache is empty */ add_action( 'admin_init', 'auto_sync_starter_templates_on_first_load' ); function auto_sync_starter_templates_on_first_load() { // Only run for site administrators on the starter-templates page if ( ! current_user_can( 'manage_options' ) ) { return; } if ( isset( $_GET['page'] ) && $_GET['page'] === 'starter-templates' ) { // Check if the primary template transient exists on this sub-site $templates = get_site_transient( 'astra_sites_batch_is_complete' ); if ( false === $templates && class_exists( 'Astra_Sites_Batch_Processing' ) ) { // Trigger the internal sync process programmatically if ( method_exists( 'Astra_Sites_Batch_Processing', 'get_instance' ) ) { Astra_Sites_Batch_Processing::get_instance()->import_all_categories_and_tags(); } } } }
Welcome to Nexton WordPress Labs. This is your first post. Edit or delete it, then start writing!
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.