// منع فهرسة Feed Pages function noindex_feed_pages() { if (is_feed()) { echo '' . "\n"; } } add_action('wp_head', 'noindex_feed_pages'); // منع فهرسة Attachment Pages function noindex_attachment_pages() { if (is_attachment()) { echo '' . "\n"; } } add_action('wp_head', 'noindex_attachment_pages'); // منع فهرسة صفحات البحث function noindex_search_pages() { if (is_search()) { echo '' . "\n"; } } add_action('wp_head', 'noindex_search_pages'); // منع فهرسة REST API عبر Header function disable_rest_api_indexing() { if (strpos($_SERVER['REQUEST_URI'], '/wp-json') !== false) { header('X-Robots-Tag: noindex, nofollow', true); } } add_action('init', 'disable_rest_api_indexing');