Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Comment ajouter nofollow à un lien spécifique ou à tous les liens WordPress dans the_content

<?php
function example_link_nofollow( $content ) {
    $url  ='http://example.com';
        $content = str_replace( '<a href="'.$url.'', '<a rel="nofollow" href="'.$url.'', $content );
    return $content;
}
add_filter('the_content','example_link_nofollow');
?>
Source by wpformation.com #
 
PREVIOUS NEXT
Tagged: #Comment #ajouter #nofollow #lien #ou #tous #les #liens #WordPress #dans
ADD COMMENT
Topic
Name
4+3 =