| Server IP : 87.98.154.146 / Your IP : 216.73.216.165 Web Server : Apache System : Linux webm004.cluster126.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : ohklomafyi ( 52085) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/ohklomafyi/www/wp-content/plugins/jetpack/modules/ |
Upload File : |
<?php
/**
* Module Name: Sitemaps
* Module Description: Make it easy for search engines to find your site.
* Sort Order: 13
* First Introduced: 3.9
* Requires Connection: No
* Auto Activate: No
* Module Tags: Recommended, Traffic
* Feature: Recommended
* Additional Search Queries: sitemap, traffic, search, site map, seo
*
* @package automattic/jetpack
*/
/**
* Disable direct access and execution.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( '1' == get_option( 'blog_public' ) ) { // phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
include_once __DIR__ . '/sitemaps/sitemaps.php';
// Disable WordPress 5.5-era sitemaps.
add_filter( 'wp_sitemaps_enabled', '__return_false' );
}
add_action( 'jetpack_activate_module_sitemaps', 'jetpack_sitemap_on_activate' );
/**
* Run when Sitemaps module is activated.
*
* @since 4.8.0
*/
function jetpack_sitemap_on_activate() {
wp_clear_scheduled_hook( 'jp_sitemap_cron_hook' );
require_once __DIR__ . '/sitemaps/sitemap-constants.php';
require_once __DIR__ . '/sitemaps/sitemap-buffer.php';
require_once __DIR__ . '/sitemaps/sitemap-stylist.php';
require_once __DIR__ . '/sitemaps/sitemap-librarian.php';
require_once __DIR__ . '/sitemaps/sitemap-finder.php';
require_once __DIR__ . '/sitemaps/sitemap-builder.php';
}