<?php
$i = 0; 
$len = count(get_the_category());
foreach((get_the_category()) as $category) {
if ($i == $len - 1){
echo $category->cat_name' ';
}
else{
echo $category->cat_name . ', ';
}
$i++;
}
?>
php bilgim cok yok ama yukardaki kod işinizi görebilir