Admin_Menu::maybe_redirect_to_first_settings_tab()
Source
File: src/core/admin/class-admin-menu.php
public function maybe_redirect_to_first_settings_tab() { if ( $this->is_pro_older_than_38() ) { return; } if ( ! automator_filter_has_var( 'post_type' ) ) { return; } if ( 'uo-recipe' !== automator_filter_input( 'post_type' ) ) { return; } if ( ! automator_filter_has_var( 'page' ) ) { return; } if ( 'uncanny-automator-settings' !== automator_filter_input( 'page' ) ) { return; } if ( automator_filter_has_var( 'tab' ) ) { return; } if ( empty( self::$tabs ) ) { return; } $tab_ids = array_keys( self::$tabs ); wp_safe_redirect( add_query_arg( array( 'post_type' => 'uo-recipe', 'page' => 'uncanny-automator-settings', 'tab' => array_shift( $tab_ids ), ), admin_url( 'edit.php' ) ) ); }
Expand full source code Collapse full source code View on Github