<?php
$post_id = get_the_ID();
//echo $post_id;
$categories = get_the_category($post_id);
$cats_output = "";
foreach ($categories as $category) {
$slug = $category->slug;
$name = $category->name;
$cats_output .= "<a href='/talks/?fwp_categories=" . $slug . "' rel='tag'>" . $name . "</a>, ";
}
$cats_output = substr($cats_output, 0, -7);
echo $cats_output;
?>