web-dev-qa-db-fra.com

Comment ajouter rel nofollow à cela?

Comment puis-je ajouter rel = "nofollow" à cela?

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

pas sûr mais essayez ceci

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

jetez également un coup d'oeil sur cette <a href="<?php the_permalink(); ?>" rel="nofollow">(...)</a>

2
Niraj Chauhan