Now that I have that straightened out, how do I call the category slug? get_the_category only seems to let me get id, title, and description. I’m using
foreach((get_the_category()) as $cat) {
echo $cat->cat_name . ' ';
}
as I am constructing a feed link on each category page. My loop doesn’t give me the slug though.