How to add rel nofollow to this?

How can i add rel=”nofollow” to this?

echo " <a href='";
the_permalink();
echo "' >"."(...)"."</a>";

Related posts

Leave a Reply

1 comment

  1. not sure but try this

    echo " <a href='";
    the_permalink();
    echo "' rel='nofollow'>"."(...)"."</a>";
    

    also have a look on this
    <a href="<?php the_permalink(); ?>" rel="nofollow">(...)</a>