| Server IP : 8.134.250.228 / Your IP : 216.73.216.153 Web Server : Apache System : Linux iZ7xv33p9e9ivk7yhmj7ibZ 5.10.134-18.al8.x86_64 #1 SMP Fri Dec 13 16:56:53 CST 2024 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/www.gobluemade.com/wp-content/plugins/xml-sitemap-feed/ |
Upload File : |
<?php
/**
* Plugin Name: XML Sitemap & Google News
* Plugin URI: https://status301.net/wordpress-plugins/xml-sitemap-feed/
* Description: Feed the hungry spiders in compliance with the XML Sitemap and Google News protocols.
* Version: 5.7.2
* Text Domain: xml-sitemap-feed
* Requires at least: 4.4
* Requires PHP: 5.6
* Author: RavanH
* Author URI: https://status301.net/
*
* @package XML Sitemap & Google News
*/
/**
* Copyright 2026 RavanH
* https://status301.net/
* mailto: ravanhagen@gmail.com
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
/**
* --------------------
* AVAILABLE HOOKS
* --------------------
*
* Documented on https://premium.status301.com/knowledge-base/xml-sitemap-google-news/action-and-filter-hooks/
*
* ---------------------
* AVAILABLE FUNCTIONS
* ---------------------
*
* Conditional tags https://premium.status301.com/knowledge-base/xml-sitemap-google-news/conditional-tags/
*
* Feel free to request, suggest or submit more :)
*/
defined( 'WPINC' ) || die;
define( 'XMLSF_VERSION', '5.7.2' );
define( 'XMLSF_ADV_MIN_VERSION', '1.3' );
define( 'XMLSF_NEWS_ADV_MIN_VERSION', '1.4.5' );
define( 'XMLSF_DIR', __DIR__ );
define( 'XMLSF_BASENAME', plugin_basename( __FILE__ ) );
// Pluggable functions.
require_once XMLSF_DIR . '/inc/functions-pluggable.php';
// Shared functions.
require_once XMLSF_DIR . '/inc/functions.php';
// Prepare hooks for debugging.
WP_DEBUG && require_once XMLSF_DIR . '/inc/functions-debugging.php';
// Fire it up at plugins_loaded.
add_action( 'plugins_loaded', 'xmlsf', 9 );
add_filter( 'robots_txt', 'XMLSF\robots_txt', 11 );
add_action( 'xmlsf_sitemap_loaded', 'XMLSF\sitemap_loaded' );
add_action( 'xmlsf_news_sitemap_loaded', 'XMLSF\sitemap_loaded' );
// Admin.
add_action( 'admin_menu', array( 'XMLSF\Admin\Main', 'add_options_pages' ) );
add_action( 'admin_init', array( 'XMLSF\Admin\Main', 'register_settings' ), 7 );
add_action( 'admin_init', array( 'XMLSF\Admin\Main', 'init' ), 9 );
add_action( 'admin_init', array( 'XMLSF\Admin\Main', 'compat' ) );
register_deactivation_hook( __FILE__, array( 'XMLSF\Admin\Main', 'deactivate' ) );
register_activation_hook( __FILE__, array( 'XMLSF\Admin\Main', 'activate' ) );
/**
* Get sitemap object.
*
* @since 5.0
*
* @static XMLSF\XMLSitemapFeed $xmlsf
*
* @return XMLSF\XMLSitemapFeed object by reference
*/
function &xmlsf() {
global $xmlsf;
if ( ! isset( $xmlsf ) ) {
$xmlsf = new XMLSF\XMLSitemapFeed();
}
return $xmlsf;
}
/**
* Register XMLSF autoloader
*
* @since 5.5
*
* @param string $class_name Namespaced class name.
*/
spl_autoload_register(
function ( $class_name ) {
// Bail if the class is not in our namespace.
if ( 0 !== strpos( $class_name, 'XMLSF\\' ) ) {
return;
}
// Build the filename and path.
$class_name = str_replace( 'XMLSF', 'inc', $class_name );
$class_name = strtolower( $class_name );
$path_array = explode( '\\', $class_name );
$class_name = array_pop( $path_array );
$class_name = str_replace( '_', '-', $class_name );
$file = realpath( XMLSF_DIR ) . DIRECTORY_SEPARATOR . \implode( DIRECTORY_SEPARATOR, $path_array ) . DIRECTORY_SEPARATOR . 'class-' . $class_name . '.php';
// If the file exists for the class name, load it.
if ( file_exists( $file ) ) {
include_once $file;
}
}
);
/**
* Deprecated, innit?
*
* Keep for backwards compatibility with Google News Advanced pre 1.3.6
*/
function xmlsf_init() {
_deprecated_function( __FUNCTION__, '5.5', 'xmlsf' );
}