Advertisement
rAthus

[WordPress] ajouter un "nofollow" sur les liens de copyright du footer qui ne sont pas sur la home

Oct 19th, 2020 (edited)
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. Surcharger dans le child theme le fichier "/wp-content/themes/salient/includes/partials/footer/copyright-bar.php"
  2.  
  3. En tout début de fichier, ajouter ce code juste avant la ligne "if ( 'false' === $disable_footer_copyright ) {" :
  4.  
  5. // Arkanite : on commence à capturer le lien de copyright
  6. ob_start();
  7.  
  8. En toute fin de fichier, juste après le tout dernier "}", ajouter ce code :
  9.  
  10. // Arkanite : si on est pas sur la home page, on rajoute un "nofollow" au lien de copyright
  11. $copyright = ob_get_clean();
  12. if (!is_front_page())
  13.     $copyright = preg_replace('#(href="[^"]*arkanite.com)#','rel="nofollow" $1',$copyright);
  14. echo $copyright;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement