Adding relevant links to your page enhances both SEO and user experience by guiding visitors to explore topics further. When a site provides dofollow links, it’s endorsing the linked content and potentially boosting its search engine ranking.
On the other hand, nofollow links signal that while you’re offering valuable resources for users, you’re not passing SEO authority—striking a balance between user value and protecting your site’s domain strength.
But how do you do it on WordPress? In this article, we will learn how to make a link do follow and no follow in the WordPress classic editor and block editor with some simple and easy steps.
By default, links added in WordPress become dofollow (classic or block editor), meaning they tell search engines to follow the link and pass on some SEO value to the linked page.
And there you have it! You’ve now learned how to add both dofollow and nofollow external links to your blog posts using the Classic Editor in WordPress.
Adding do-follow & no-follow links on a page in the WordPress block editor follows the same process as in the classic editor.
To add a nofollow attribute to an external link in the WordPress Block Editor, follow these steps:
And that’s it! You’ve successfully added nofollow external links to your blog post using the WordPress Block Editor. This method allows you to control which links provide SEO value to other sites while still offering your readers valuable resources.
Optimize your pages by adding external valuable links with a nofollow attribute. Citing your sources makes your work more credible and shows that you’ve done proper research. Start Now
A do-follow external link is a link from your website to another site that passes on some of your website’s authority. It’s like giving a “vote of confidence,” telling search engines that the other site is valuable and credible. This can help the linked site rank higher in search results.
A no-follow external link is a link that tells search engines not to pass any of your website’s authority to the linked site. This is done by adding a special code (rel=”nofollow”) to the link. No-follow links can be a smart way to share helpful resources with readers without affecting your own site’s ranking power. Some website tools make it easy to add no-follow links directly from settings.
You don’t need to do anything special. All links are dofollow by default. Just use a normal anchor (<a>
) tag like this:
Example:<a href="https://example.com">Your Anchor Text</a>
To make a link nofollow, add rel="nofollow"
inside the anchor tag.
Example:<a href="https://example.com" rel="nofollow">Your Anchor Text</a>
This tells search engines not to pass any SEO authority to the linked site, while still allowing users to visit it.