Ok this is just a quick post of part of the SEO series (more coming shortly)
Some people for the benefit of link juice prefer to make their bookmarks/blogroll nofollow, so here goes if you want to do this..
To filter bookmarks and add rel="nofollow"
Add this to your child themes functions.php
function nofollow_my_bookmarks( $links ) {
foreach($links as $link) {
$link->link_rel .= ' nofollow';
$link->link_rel = trim($link->link_rel);
}
return $links;
}
add_filter('get_bookmarks', 'nofollow_my_bookmarks');





Recent discussions