*/ namespace RankMath\Wizard; use RankMath\KB; defined( 'ABSPATH' ) || exit; /** * Step class. */ class Search_Console implements Wizard_Step { /** * Render step body. * * @param object $wizard Wizard class instance. * * @return void */ public function render( $wizard ) { ?>

' . esc_html__( 'Read more about it here.', 'rank-math' ) . '' ); ?>

cmb->show_form(); ?> cmb->add_field( [ 'id' => 'search_console_ui', 'type' => 'raw', 'file' => __DIR__ . '/views/search-console-ui.php', ] ); } /** * Save handler for step. * * @param array $values Values to save. * @param object $wizard Wizard class instance. * * @return bool */ public function save( $values, $wizard ) { return true; } }