Forums

How to remove anchor tag on category link (3 posts)

  1. yanntrab
    Member
    Posted 7 months ago #

    Hi,

    I have added <?php the_category(', '); ?> next to the date on the loop.php file. The category link appears next to the date on every post in my blog page.
    However, I'm trying to have just the category name as text, I don't want the category to be a link. Is there a way to remove the anchor tag around the category name? Or any other solution?

    Thanks!

  2. Dankicity
    Member
    Posted 7 months ago #

    Second example in:
    http://codex.wordpress.org/Function_Reference/get_the_category

    <?php
    $category = get_the_category();
    echo $category[0]->cat_name;
    ?>
  3. yanntrab
    Member
    Posted 7 months ago #

    awesome. that's perfect. Thank you!

Reply

You must log in to post.

About this Topic