Chặn index subpage (phân trang) trong Wordpress
Chèn đoạn code sau vào file function.php trong theme hiện tại
Điều này sẽ giúp chèn thêm thẻ meta <meta name='robots' content='noindex,follow'/> vào trong header và sẽ không cho google index nội dung page này.
Chèn đoạn code sau vào file function.php trong theme hiện tại
Mã:
add_action('wp_head', 'robot_meta_subpage_fix', 1);
function robot_meta_subpage_fix() {
if(is_paged()) {
echo "<meta name='robots' content='noindex, follow'/>", "\n";
}
}
Điều này sẽ giúp chèn thêm thẻ meta <meta name='robots' content='noindex,follow'/> vào trong header và sẽ không cho google index nội dung page này.
Bài viết liên quan