Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/www/wp-content/plugins/seo-by-rank-math/includes/admin/wizard/views/ |
Upload File : |
<?php /** * Setup wizard navigation template. * * @package RankMath * @subpackage RankMath\Admin\Wizard */ defined( 'ABSPATH' ) || exit; $output_steps = $this->steps; $array_keys = array_keys( $this->steps ); $current_step = array_search( $this->step, $array_keys, true ); ?> <div class="wizard-navigation"> <a class="step step-label" href="<?php echo esc_url( apply_filters( 'rank_math/wizard/step/label_url', \RankMath\Helper::get_admin_url( 'wizard' ) ) ); ?>" title="<?php echo esc_html( apply_filters( 'rank_math/wizard/step/label', __( 'Getting Started', 'rank-math' ) ) ); ?>"></a> <?php foreach ( $output_steps as $step_key => $step ) : if ( $this->is_nav_item_hidden( $step_key ) ) { continue; } $class_attr = ''; if ( $step_key === $this->step ) { $class_attr = 'active'; } elseif ( $current_step > array_search( $step_key, $array_keys, true ) ) { $class_attr = 'done'; } ?> <a class="<?php echo esc_attr( $class_attr ); ?>" href="<?php echo esc_url( $this->get_step_link( $step_key ) ); ?>" title="<?php echo esc_attr( $step['name'] ); ?>"><span></span></a> <?php endforeach; ?> </div>