• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Thêm nofollow vào các liên kết trong bài viết

Admin

Well-Known Member
Staff member
Administrator
Nofollow ảnh hưởng đến pagerank của bạn, hãy sử dụng thuộc tính này thật tốt, và bạn sẽ tránh được các lỗi không đáng.
Mở file functions.php và chèn đoạn code sau:



PHP:
function my_nofollow($content) 
 { 
      return stripslashes(wp_rel_nofollow($content)); 
 }
 add_filter('the_content', 'my_nofollow');
trong đoạn code trên, chúng ta sử dụng hàm wp_rel_nofollow($text), đây là hàm được wordpress cung cấp, dùng để them thuộc tính rel="nofollow" vào tất cả cá tag a trong $text,
Hàm hàm này nằm trong file wp-includes/formatting.php. và sử dụng đối tượng $wpdb
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top