📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 19:18:26
📂
/ (Root)
/
home
/
apkbfjox
/
b9-game.xyz
/
wp-content
/
plugins
/
seo-by-rank-math
/
includes
/
modules
/
sitemap
📍 /home/apkbfjox/b9-game.xyz/wp-content/plugins/seo-by-rank-math/includes/modules/sitemap
🔄 Refresh
✏️
Editing: class-stylesheet.php
Writable
<?php /** * The stylesheet class for the sitemaps. * * @since 0.9.0 * @package RankMath * @subpackage RankMath\Sitemap * @author Rank Math <support@rankmath.com> * * @copyright Copyright (C) 2008-2019, Yoast BV * The following code is a derivative work of the code from the Yoast(https://github.com/Yoast/wordpress-seo/), which is licensed under GPL v3. */ namespace RankMath\Sitemap; use RankMath\Traits\Hooker; defined( 'ABSPATH' ) || exit; /** * Stylesheet class. */ class Stylesheet extends XML { use Hooker; /** * Hold sitemap type. * * @var string */ public $type; /** * Output the XSL for the XML sitemap. * * @param string $type Sitemap type. */ public function output( $type ) { $this->type = $type; $expires = gmdate( 'D, d M Y H:i:s', ( time() + YEAR_IN_SECONDS ) ); $this->send_headers( [ 'Cache-Control' => 'maxage=' . YEAR_IN_SECONDS, 'Expires' => $expires . ' GMT', 'Etag' => md5( $expires . $this->type ), ], true ); /* translators: 1. separator, 2. blogname */ $title = sprintf( __( 'XML Sitemap %1$s %2$s', 'rank-math' ), '-', get_bloginfo( 'name', 'display' ) ); /* translators: 1. separator, 2. blogname */ $kml_title = sprintf( __( 'Locations Sitemap %1$s %2$s', 'rank-math' ), '-', get_bloginfo( 'name', 'display' ) ); if ( 'main' !== $type ) { /** * Fires for the output of XSL for XML sitemaps, other than type "main". */ $this->do_action( "sitemap/xsl_{$type}", $title, $kml_title ); die; } require_once 'sitemap-xsl.php'; die; } }
💾 Save Changes
❌ Cancel