Aselam evet ekleyebilirsiniz..

https://codex.wordpress.org/Plugin_A...erence/wp_head
https://codex.wordpress.org/Function_Reference/is_tax

Bir fonksiyon yazıp wp_head sonra no index meta etiketini yazdırabilirsiniz.



if(!function_exists('tags_add_wp_head')) {    add_action('wp_head','tags_add_wp_head');    function tags_add_wp_head () {        $tax_slug = array(            "e-ticaret",            "musteri"        );        if(is_tag($tax_slug)) {            echo "<meta name='robots' content='noindex,follow' />";        }    }}