Bước 1: Mở incfiles/classes/functions.php chèn đoạn code sau vào cuối file, trên dấu } nhé
- Mã: Chọn tất cả
<?php
static function John_Smart_Seo($content,$tag){
$key = htmlspecialchars($tag);
$int = substr_count($key,',')+1;
for($t=0; $t<$int; $t++)
{
$key = explode(',',$tag);
$key = '/(' . $key[$t] . ')/si';
if(!empty($tag)){
$content = preg_replace($key, '<a title="$1" href="/forum/search.php?search=$1"><b>$1</b></a>', $content);
} else {
$content = $content;
}
}
return $content;
}
?>
<!--This is code shared at http://vuongdz.xtgem.com -->
Bước 2: Mở forum/index.php tìm:
- Mã: Chọn tất cả
<?php
if ($set_user['smileys']) {
$text = functions::smileys($text, $res['rights'] ? 1 : 0);
}
?>
<!--This is code shared at http://vuongdz.xtgem.com -->
Chèn đoạn code sau vào dưới nó:
- Mã: Chọn tất cả
$text = functions::John_Smart_Seo($text,$type1['tag']);
<!--This is code shared at http://vuongdz.xtgem.com -->
Bài viết được share tại: Nhanhnao