| Server IP : 185.208.173.17 / Your IP : 87.236.161.98 Web Server : Microsoft-IIS/10.0 System : Windows NT SRV8576125506 10.0 build 26100 (Windows Server 2016) AMD64 User : IUSR ( 0) PHP Version : 7.4.13 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/panel.parsmega.com/wp-content/plugins/wp-rest-cache/admin/partials/ |
Upload File : |
<?php
/**
* View for the header of the WP REST Cache Settings page.
*
* @link: https://www.acato.nl
* @since 2018.1
*
* @package WP_Rest_Cache_Plugin
* @subpackage WP_Rest_Cache_Plugin/Admin/Partials
*/
if ( ! isset( $sub, $this->settings_panels ) ) {
return;
}
?>
<h1>WP REST Cache</h1>
<h2 class="nav-tab-wrapper">
<?php
foreach ( $this->settings_panels as $wprc_key => $wprc_panel ) {
?>
<a href="<?php echo esc_attr( admin_url( 'options-general.php?page=wp-rest-cache&sub=' . $wprc_key ) ); ?>" id="<?php echo esc_attr( $wprc_key ); ?>"
class="nav-tab <?php echo $wprc_key === $sub ? 'nav-tab-active' : ''; ?>"><?php echo esc_html( $wprc_panel['label'] ); ?></a>
<?php
}
?>
</h2>