WordPress SEO: Advanced Nofollow

Martin Brinkmann
Apr 16, 2009
Updated • Jun 4, 2017
Internet
|
10

WordPress is already well optimized when it comes to SEO (that's Search Engine Optimization). There are some basic changes that are usually performed by webmasters, like changing the link structure to include the title of the article, or displaying the title of the article in the web browser's title. Most WordPress admins stop there, some go ahead and install SEO plugins which do some magic in the background.

Advanced tips are not that easy to come by, and most websites running a WordPress blog do not have them implemented. This article lists some options that center around the nofollow tag.

Nofollow

Nofollow basically tells search engines like Google to not count the link vote that is usually being passed when linking on the Internet.

Most search engines see this as a vote for the linked resource. While you may not mind giving votes to respected web properties or other sites you like, you may sometimes link to sites that you don't want to vote for.

Another reason why this is beneficial is because of linking power. Each link that points to internal and external resources gets a piece of that linking power.

Not all linked pages should be treated equally however which is what this article is about. It makes for example no sense to pass linking power to internal pages that have no value, think of privacy policies, contact pages, login, log off or social bookmarking links.

WordPress themes come with a surprising number of links, the majority of which is not set to nofollow. Here are a few areas where you should consider placing the nofollow link tag in a WordPress blog:

  • The more (read more) tag. The page is already linked from the title of the post properly.
  • WordPress meta data
  • Pages like Privacy Policies, Contact Us
  • Social Bookmarking links

To add the nofollow link one would simply add the rel="nofollow"
tag to the link structure which is not a problem if the link is displayed in the source code of the theme, for example:

<a href="http://www.example.com/" rel="nofollow">Example Link</a>

There are however links (like the previously mentioned more tag) that cannot be manipulated in the theme source as the link is created by a php function.

Here is how you make the more tag in WordPress nofollow:

  • Open the file post-template.php in the wp-includes folder.
  • Locate the following line beginning with:$output .= ' <a href="'. get_permalink()..
  • Replace it with:$output .= ' <a href="'. get_permalink() . "#more-$id\" class=\"more-link\" rel=\"nofollow\">$more_link_text</a>";
  • You basically add the rel=\"nofollow\" tag to the line

This ensures that all more tags will be nofollow from then on.

Summary
Wordpress SEO: Advanced Nofollow
Article Name
Wordpress SEO: Advanced Nofollow
Description
The guide looks at the nofollow attribute specifically for WordPress use, and explains what it is, and how it can be used efficiently.
Author
Publisher
Ghacks Technology News
Logo
Advertisement

Tutorials & Tips


Previous Post: «
Next Post: «

Comments

  1. ecommerce website design said on May 6, 2011 at 3:02 pm
    Reply

    article seems old but still relevant. thanks for sharing.

  2. A.Jesin said on January 19, 2011 at 3:55 pm
    Reply

    You forgot archives they also account to duplicate content.
    And what about category links and author links?

  3. DailyTechPost said on September 17, 2010 at 12:10 pm
    Reply

    I think this feature has created a lot of confusion. But if the whole idea of no follow is conceptually clear then it will definitely boost your site’s ranking

  4. Wordpress seo plugins said on August 25, 2010 at 4:07 pm
    Reply

    Search Engine Marketing is very important for your local business and most small companies are starting to realize the importance of being on the first page of the search engines. I can see by your website that you have a vast understanding of internet marketing and I will let my readers know about your wonderful site.

  5. Nicodemus Flower said on May 2, 2010 at 10:11 pm
    Reply

    Hope this helps my site get to no1.

  6. Philip King said on December 30, 2009 at 1:37 pm
    Reply

    Hi Martin
    Good article, just one question before I start changing code…
    When WordPress does an auto-update would the changed code be removed by the update and have to be modified again?
    Thanks, Philip

    1. Martin said on December 30, 2009 at 1:58 pm
      Reply

      Philip yes that is the case.

  7. pier said on April 28, 2009 at 1:22 pm
    Reply

    GOOD JOP…

    thank you

  8. Tom said on April 17, 2009 at 8:52 pm
    Reply

    I just changed it on our blog.. see what happens..

  9. The Retroist said on April 16, 2009 at 8:25 pm
    Reply

    Nice advice, I am going to give it a try on my blogs and see if it makes a difference.

Leave a Reply

Check the box to consent to your data being stored in line with the guidelines set out in our privacy policy

We love comments and welcome thoughtful and civilized discussion. Rudeness and personal attacks will not be tolerated. Please stay on-topic.
Please note that your comment may not appear immediately after you post it.