helpers->isValidPost( $post ) ) { return; } // First, unschedule any ping actions that might already be enqueued. aioseo()->helpers->unscheduleAction( 'aioseo_sitemap_ping' ); // Then, schedule the new ping. aioseo()->helpers->scheduleSingleAction( 'aioseo_sitemap_ping', 30 ); } /** * Schedules the recurring sitemap ping. * * @since 4.0.0 * * @return void */ public function scheduleRecurring() { try { if ( ! as_next_scheduled_action( 'aioseo_sitemap_ping_recurring' ) ) { $interval = apply_filters( 'aioseo_sitemap_ping_recurring', DAY_IN_SECONDS ); as_schedule_recurring_action( strtotime( 'tomorrow' ), $interval, 'aioseo_sitemap_ping_recurring', [], 'aioseo' ); } } catch ( \Exception $e ) { // Do nothing. } } /** * Pings search engines when the sitemap is updated. * * @since 4.0.0 * * @param array $sitemapUrls Sitemap URLs that should be sent to the remote endpoints. * @return void */ public function ping( $sitemapUrls = [] ) { $endpoints = apply_filters( 'aioseo_sitemap_ping_urls', [ 'https://www.google.com/ping?sitemap=', 'https://www.bing.com/ping?sitemap=' ] ); if ( aioseo()->options->sitemap->general->enable ) { $sitemapUrls[] = aioseo()->sitemap->helpers->getUrl( 'general' ); } if ( aioseo()->options->sitemap->rss->enable ) { $sitemapUrls[] = aioseo()->sitemap->helpers->getUrl( 'rss' ); } foreach ( aioseo()->sitemap->addons as $classes ) { if ( ! empty( $classes['ping'] ) ) { $sitemapUrls = $sitemapUrls + $classes['ping']->getPingUrls(); } } foreach ( $endpoints as $endpoint ) { foreach ( $sitemapUrls as $url ) { wp_remote_get( urlencode( $endpoint . $url ) ); // @TODO: [V4+] Log bad responses using dedicated logger class once available. } } } }