Quote:
Today at 03:26 AM Zzed said this in Post #2
In admin/functions.php:
Look for:
Code:
//highlight words for search engine
Add the following directly above it:
Code:
if($post[posts] >= 1000) {
$left = floor($post[posts] / 1000);
$right = $post[posts] % 1000;
$post[posts] = "$left".","."$right";
}
|
Or just:
PHP Code:
$post['posts'] = number_format($post['posts']);