Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9083791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T20:51:21+00:00 2026-06-16T20:51:21+00:00

Okay, so I have a WordPress template that I created that only displays posts

  • 0

Okay, so I have a WordPress template that I created that only displays posts that have the “workout” category associated with it. Within the loop that displays those, I want the categories of the specific post to be listed.

I was thinking something like this would work:

$id = get_the_ID();
$cats = wp_get_post_categories($id);

But then I do not know how to echo this out on to the screen.
Anyone have any idea how I can display the categories of each post within the loop? All of the articles I have looked at have only showed how to display all categories, not display the categories associated with a specific post.

Here is the loop I have:

<div class="query">
<b><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></b>
    <?php 
        $id = get_the_ID();
        $cats = wp_get_post_categories($id);
    ?>
</div>
<?php endwhile; ?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T20:51:23+00:00Added an answer on June 16, 2026 at 8:51 pm

    Get the category objects:

    $cats = get_the_category($id);
    

    Just echo the name:

    echo $cats[0]->name;
    

    If you want to output a link, use this:

    <a href="<?php echo get_category_link($cats[0]->cat_ID); ?>">
        <?php echo $cats[0]->name; ?>
    </a>
    

    Note: instead of wp_get_post_categories($id), you could just use get_the_category().


    Update: if you want to display all the categories, just loop through them:

    <?php foreach ( $cats as $cat ): ?>
    
        <a href="<?php echo get_category_link($cat->cat_ID); ?>">
            <?php echo $cat->name; ?>
        </a>
    
    <?php endforeach; ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay I have a project that is using the android-rss library (org.mcsoxford.rss). I created
Okay, so I have a client that is insisting that I install Wordpress on
Okay I have installed a theme in wordpress that returns a few errors. Warning:
Okay I have a large CRUD app that uses tabs with Forms embedded in
Okay i have two models: posts and comments. as you can think comments has
Okay I have created an application where in one of the screens I have
Okay i have a custom server control that has some autocomplete settings, i have
Okay I have 2 files. One file is data that is updated every 10
I have 5 game sections that will use the same template sheet, but they
In wordpress I have developed a website. In that I have two sidebars. In

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.