Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
If you need to add nofollow to all links in WordPress at just one minute using this code snippet where let you filter by WordPress built-in hooks the_content.
Steps to nofollow links in WordPress:
function zytheme_links_nofollow( $content ){ $content = str_replace( '<a href="', '<a rel="nofollow" href="', $content ); return $content; } add_filter('the_content','zytheme_links_nofollow');
Did you find the WordPress snippets in this article helpful? Share it with your friends and if you have any questions and want to ask us about it, please don’t hesitate to add comments.