/home/techb158/primomovers.ca/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO
Edit: /home/techb158/primomovers.ca/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO/SEOPress.php (1213B)
option = $option;
}
/**
* Subscribed events.
*/
public static function get_subscribed_events() {
if ( ! function_exists( 'seopress_get_toggle_option' ) || 1 !== (int) seopress_get_toggle_option( 'xml-sitemap' ) ) {
return [];
}
if ( ! method_exists( seopress_get_service( 'SitemapOption' ), 'isEnabled' ) || 1 !== (int) seopress_get_service( 'SitemapOption' )->isEnabled() ) {
return [];
}
return [
'rocket_sitemap_preload_list' => [ 'add_seopress_sitemap', 15 ],
];
}
/**
* Add SEOPress sitemap URL to the sitemaps to preload
*
* @param array $sitemaps Sitemaps to preload.
* @return array Updated Sitemaps to preload
*/
public function add_seopress_sitemap( $sitemaps ) {
$sitemaps[] = get_home_url() . '/sitemaps.xml';
return $sitemaps;
}
}