
Show keyword in full news
1. Open file engine/modules/show.full.php and find
$db->query ("SELECT id, title, date
Replace to
$db->query ("SELECT id, title, date, keywords
Next, find
$tpl->set('{title}', $metatags['title']);
below add
if( $row['keywords'] ) {
    $keys_arr = explode(', ',$row['keywords']);
    $keywords = '';
    foreach($keys_arr as $key)
    {
    $keywords .= '<a href="' .$config['http_home_url']. 'index.php?do=search&story='.$key.'&subaction=search" target="_blank">'.$key.'</a>, ';
    }
    $keywords = substr($keywords,0,-2);
    $tpl->set( '{keywords}', "<b>Keywords:</b> " . stripslashes( $keywords ) . ".");
} else {
    $tpl->set( '{keywords}', "" );
}
2. Open file fullstory.tpl of current template and add this tag : {keywords} in somewhere you want to show
This page is search keyword in your site
Next Page is Search keyword in Google

Updates
Dle templates English


