// ===== AUTO CRAWL & INDEX SIGNAL (FINAL SAFE PRO) =====
add_action(‘publish_post’, function($post_id) {if (wp_is_post_revision($post_id) || wp_is_post_autosave($post_id)) return; $post_type = get_post_type($post_id); if ($post_type !== 'post') return; $sitemap = home_url('/sitemap_index.xml'); // Google ping wp_remote_get('https://www.google.com/ping?sitemap=' . urlencode($sitemap), [ 'timeout' => 2 ]); // Bing ping wp_remote_get('https://www.bing.com/ping?sitemap=' . urlencode($sitemap), [ 'timeout' => 2 ]);
}, 10, 1);

