Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,841
- How-to & Troubleshooting
- 129,858
- Creating & Extending
- 25,886
- Requests & Feedback
- 9,530
- Third Party Plugins
- 9,828
- Showcase
- 3,316
- Ideas
- 1,387
- Miscellaneous
- 9,177
-
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`