Chào mọi người, em đang muốn dofollow link trong commet wordpress thì làm sao ạ, hiện tại các link trong comment của em mặc định nó cứ nofollow hết, em muốn đi link trong comment mà nó nofollow hết bùn quá, có cách nào chuyển hết các link nofollow này thành dofollow không giúp em với, em cảm ơn
Có 2 cách: Cách 1: xài plugin để dofollow theo ý Sử dụng plugin sau: https://wordpress.org/plugins/dofollow-case-by-case/ Rồi vào Settings -> Dofollow thì nó sẽ dofollow hết link trong commnet. Cách 2: vào function.php của themes chèn code sau vào: PHP: //xóa nofollow tại commnetfunction remove_nofollow($string) { $string = str_ireplace(' rel="nofollow"', '', $string); $string = str_ireplace(' rel="nofollow ugc"', '', $string); return $string;}//add_filter('the_content', 'remove_nofollow'); //nếu muốn nó xóa nofollow ở trong nội dung bài viết thì mở rem code này ra.add_filter('comment_text', 'remove_nofollow');