Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to pull blog category in activity loop?

Got it:

`global $post;
$category = get_the_category($post->ID);
$cat_slug = $category[0]->slug; // gets the slug
$category = $category[0]->cat_name; // gets the name
$postslug = basename(get_permalink()); // gets the post permalink`

Skip to toolbar