__( 'About', 'all-in-one-video-gallery' ), 'aiovg_support' => __( 'Support', 'all-in-one-video-gallery' ) ); $active_tab = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : 'aiovg_about'; require_once AIOVG_PLUGIN_DIR . 'admin/templates/welcome.php'; } /** * Welcome page redirect. * * Only happens once and if the site is not a network or multisite. * * @since 1.0.0 */ public function welcome_page_redirect() { // Bail if no activation redirect transient is present if ( ! get_transient( 'aiovg_welcome_redirect' ) ) { return; } // Delete the redirect transient delete_transient( 'aiovg_welcome_redirect' ); // Bail if activating from network or bulk sites if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { return; } // Redirect to welcome page wp_safe_redirect( admin_url( 'index.php?page=aiovg_about' ) ); } }