*/ /* Copyright 2016 - 2024 - Benjamin Denis (email : contact@seopress.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, 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. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ defined( 'ABSPATH' ) or die( 'Please don’t call the plugin directly. Thanks :)' ); //XML //Headers if (function_exists('siteseo_sitemaps_headers')) { siteseo_sitemaps_headers(); } //WPML add_filter( 'wpml_get_home_url', 'siteseo_remove_wpml_home_url_filter', 20, 5 ); function siteseo_xml_sitemap_index_xsl() { $home_url = home_url().'/'; if (function_exists('pll_home_url')) { $home_url = site_url().'/'; } $home_url = apply_filters( 'siteseo_sitemaps_home_url', $home_url ); $siteseo_sitemaps_xsl =' '; $siteseo_sitemaps_xsl .="\n"; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .="\n"; $siteseo_sitemaps_xsl .='XML Sitemaps'; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .="\n"; $siteseo_sitemaps_xsl_css = ''; $siteseo_sitemaps_xsl .= $siteseo_sitemaps_xsl_css; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='

'.esc_html__('XML Sitemaps','siteseo').'

'; $siteseo_sitemaps_xsl .='

Index sitemaps

'; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='

'.sprintf(esc_html__('This XML Sitemap Index file contains %s sitemaps.','siteseo'),'').'

'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='

'.sprintf(esc_html__('This XML Sitemap contains %s URL(s).','siteseo'),'').'

'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='URL'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .=esc_html__('Last update','siteseo'); $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
    '; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='
  • '; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='
  • '; $siteseo_sitemaps_xsl .='
    '; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
    '; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='
  • '; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .= ''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='
  • '; $siteseo_sitemaps_xsl .='
    '; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .=''; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl .='
'; $siteseo_sitemaps_xsl = apply_filters('siteseo_sitemaps_xsl', $siteseo_sitemaps_xsl); return $siteseo_sitemaps_xsl; } echo siteseo_xml_sitemap_index_xsl(); //phpcs:ignore