관리-도구
편집 파일: advanced.php
<?php /** * @package WPSEO\Admin */ if ( ! defined( 'WPSEO_VERSION' ) ) { header( 'Status: 403 Forbidden' ); header( 'HTTP/1.1 403 Forbidden' ); exit(); } $active_tab = filter_input( INPUT_GET, 'tab' ); $tabs = array( 'breadcrumbs' => array( 'label' => __( 'Breadcrumbs', 'wordpress-seo' ), 'opt_group' => 'wpseo_internallinks', ), 'permalinks' => array( 'label' => __( 'Permalinks', 'wordpress-seo' ), 'opt_group' => 'wpseo_permalinks', ), 'rss' => array( 'label' => __( 'RSS', 'wordpress-seo' ), 'opt_group' => 'wpseo_rss', ), ); if ( '' === $active_tab || ! in_array( $active_tab, array_keys( $tabs ) ) ) { $active_tab = 'breadcrumbs'; } Yoast_Form::get_instance()->admin_header( true, $tabs[ $active_tab ]['opt_group'] ); ?> <h2 class="nav-tab-wrapper"> <?php foreach ( $tabs as $tab_key => $tab_opt ) { $active = ''; if ( $active_tab == $tab_key ) { $active = ' nav-tab-active'; } echo '<a class="nav-tab' . $active . '" id="' . $tab_key . '-tab" href="' . admin_url( 'admin.php?page=wpseo_advanced&tab=' . $tab_key ) . '">' . $tab_opt['label'] . '</a>'; } ?> </h2> <br/> <?php require_once WPSEO_PATH . 'admin/views/tab-' . $active_tab . '.php'; Yoast_Form::get_instance()->admin_footer();