| 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/wp-seopress/inc/functions/ |
Upload File : |
<?php
defined('ABSPATH') or die('Please don’t call the plugin directly. Thanks :)');
///////////////////////////////////////////////////////////////////////////////////////////////////
//Robots.txt
///////////////////////////////////////////////////////////////////////////////////////////////////
//Add our xml sitemaps to default WP robots.txt file
function seopress_xml_sitemaps_robots_txt($output, $public) {
if (
(function_exists('seopress_get_toggle_option') && '1' === seopress_get_toggle_option('robots')) &&
(function_exists('seopress_pro_get_service') && method_exists(seopress_pro_get_service('OptionPro'), 'getRobotsTxtEnable') && '1' === seopress_pro_get_service('OptionPro')->getRobotsTxtEnable())
){
return $output;
}
if ($public === false) {
return $output;
}
$output .= "\n";
$output .= 'Sitemap: ' . get_home_url() . '/sitemaps.xml';
return $output;
};
add_filter('robots_txt', 'seopress_xml_sitemaps_robots_txt', 10, 2);