__( 'Blockify', 'blockify' ), // Theme check i18n. 'slug' => 'blockify', 'required' => true, ], [ 'name' => 'Gutenberg', 'slug' => 'gutenberg', 'required' => true, ], ], [ 'is_automatic' => true, ] ); } add_action( 'after_switch_theme', __NAMESPACE__ . '\\redirect' ); /** * Redirects user to plugin install page if not active. * * @since 0.0.1 * * @return void */ function redirect() { if ( isset( $_GET['activated'] ) && ! is_plugin_active( 'blockify/blockify.php' ) ) { wp_safe_redirect( admin_url( 'themes.php?page=tgmpa-install-plugins' ) ); exit; } }