/**
* شرط ۱: افزودن هدر ‘X-Robots-Tag: noindex’
* به تمام فیدهای ‘RSS’
*/
add_action(‘template_redirect’,
function() {
if ( is_feed() ) {
header(‘X-Robots-Tag: noindex, follow’, true);
}
}
);
Comments are disabled.
/**
* شرط ۱: افزودن هدر ‘X-Robots-Tag: noindex’
* به تمام فیدهای ‘RSS’
*/
add_action(‘template_redirect’,
function() {
if ( is_feed() ) {
header(‘X-Robots-Tag: noindex, follow’, true);
}
}
);
Comments are disabled.