Wordpress WP_Query - Kategoriename anzeigen möglich?

ZipZek

Mitglied
Hallo Leute, ich bin am verzweifeln.

Ich bin relativ neu in Wordpress und finde im Function Codex keine passende Antwort.

Ich möchte einen Query erstellen der mir alle meine Artikel anzeigt mit Titel, Datum und Kategorie-Name (ohne Link - soll als klasse verwendet werden.)

Titel & Datum bekomme ich hin, allerdings schaffe ich nicht den Kategorie-Name des Artikels ohne Link anzuzeigen.

Code:
<?php
    $recentPosts = new WP_Query();
    $recentPosts->query();
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
    <li class="HIER DER KATEGORIENAME HIN"><strong><?php the_time('F j, Y'); ?></strong><br /><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></br></li>
<?php endwhile; ?>

Wäre toll wenn jemand helfen könnte
 

Neue Beiträge

Zurück