/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
// هدف: نو ایندکس کردن صفحات آرشیو ووکامرس دارای پارامتر
function shetabwp_noindex_filtered_pages_fix() {
	
    // بررسی فعال بودن ووکامرس. عدم گرفتن خطا در ادامه کد.
    if ( ! function_exists( 'is_woocommerce' ) ) {
        return;
    }

    // بررسی پارامتر GET. آیا لینک پارامتر اضافه دارد؟
    if ( empty( $_GET ) ) {
        return;
    }

    // بررسی صفحات آرشیو ووکامرس
    if ( is_shop() || is_product_category() || is_product_tag() ) {

        // اعمال فیلتر noindex برای افزونه‌های سئو (برای سازگاری)
        add_filter('wpseo_robots', function() { return 'noindex,follow'; }, 100);
        add_filter('rank_math/frontend/robots', function() { return 'noindex,follow'; }, 100);
        add_filter('aioseo_robots', function() {
            return ['noindex' => true, 'nofollow' => false];
        }, 100);
        
        // رونویسی محتوای تگ روبوت توسط فیلتر وردپرس
        add_filter( 'wp_robots', function( $robots ) {
            
            // محتوای تگ robots را کاملاً بازنویسی می‌کنیم
            $robots = []; 
            $robots['noindex'] = true;
            $robots['follow'] = true;

            return $robots;
        }, 100 );

        remove_action( 'wp_head', 'wp_robots' ); 
    }
}
add_action('wp', 'shetabwp_noindex_filtered_pages_fix');