Palestine
|
hi all
how to Add "nofollow" to links ?
Open source\function\function_discuzcode.php file
find
- return '<a href="'.(substr(strtolower($url), 0, 4) == 'www.' ? 'http://'.$url : $url).'" target="_blank">'.$text.'</a>';
Copy the Code
replece
- return '<a href="'.(substr(strtolower($url), 0, 4) == 'www.' ? 'http://'.$url : $url).'" target="_blank" rel="nofollow">'.$text.'</a>';
Copy the Code
find
- return '<a href="'.$url.'" target="_blank">'.$text.'</a>';
Copy the Code replce
- return '<a href="'.$url.'" target="_blank" rel="nofollow">'.$text.'</a>';
Copy the Code
demo
|
This post contains more resources
You have to Login for download or view attachment(s). No Account? Register
x
|