/home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/SEO
NameSizeModeActions
AllInOneSEOPack.php22600644editdlrm
RankMathSEO.php11190644editdlrm
SEOPress.php12130644editdlrm
TheSEOFramework.php23700644editdlrm
Yoast.php21420644editdlrm
Edit: /home/techb158/balacoffee.com/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; } }