Hyperlinking is a tradition in blogging, but in Search Engine Optimization, every external link is a dangerous trap. As google says too many links are bad for you, too few is boring. So while linking to external sites you need to be careful, as it can affect your page ranking and also credibility of your site.
Here i will show you a simple CSS trick you should consider using for identifying nofollow links on your wordpress blog.
This trick uses classes registered with body_class() function introduced in wp2.8. First we need to edit header.php so it will add appropriate body classes when rendered:
1. Open header.php in your theme folder.
2. Find <body> tag in the file and insert the following function inside:
<body <?php body_class(); ?>>
3. Save & upload it if necessary.
This will ensure your body has necessary CSS class to style nofollow links. When an author is logged in this function adds logged-in css class in your body tag so you can change styles for logged in users.
Let’s apply nofollow highlight using this class:
1. Open style.css in your theme folder.
2. Add the following line:
.logged-in a[rel~="nofollow"] {
border: 1px dotted #F60;
}
3. Save the file.
Now when you visit your site, you will see nofollow links with a border around them.

Great tip for wordpress i will try this on my sites thankyou
very very helpful informatio for seo, thank u
awesome dude
Pingback Zoom sur la fonction "body_class" de WordPress !