Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Wie man Kategorievorlagen in WordPress erstellt

Hinweis der Redaktion: Wir erhalten eine Provision für Partnerlinks auf WPBeginner. Die Provisionen haben keinen Einfluss auf die Meinung oder Bewertung unserer Redakteure. Erfahre mehr über Redaktioneller Prozess.

Möchten Sie einzigartige Kategorieseitenlayouts in WordPress erstellen?

Bei WordPress-Websites ist es üblich, verschiedene Vorlagen für Kategorien, Tags, benutzerdefinierte Beitragstypen und Taxonomien zu verwenden.

In diesem Artikel zeigen wir Ihnen, wie Sie Kategorievorlagen in WordPress erstellen können.

Creating category templates in WordPress

Warum Kategorievorlagen in WordPress erstellen?

WordPress erstellt individuelle Seiten für alle Ihre Kategorien. Sie können sie unter einer URL wie der folgenden aufrufen:

https://example.com/category/news/

Die meisten beliebten WordPress-Themes verfügen über integrierte Vorlagen, um Kategorieseiten schön zu präsentieren. Diese Vorlagen heben den Kategorietitel hervor und zeigen die Kategoriebeschreibung darunter an.

Category page example

Einige Themes können dies jedoch nicht so gut handhaben, oder Sie möchten Ihre Kategorieseiten anpassen.

Indem Sie Vorlagen für Kategorien erstellen, können Sie den Kategorieseiten bestimmte Funktionen hinzufügen.

So können Sie den Nutzern beispielsweise erlauben, Kategorien zu abonnieren, Kategoriebilder hinzuzufügen, Kategoriebeschreibungen anzuzeigen und für jede Kategorie ein anderes Layout zu wählen.

Schauen wir uns an, wie man Kategorievorlagen in WordPress erstellt. Sie können die Quicklinks unten verwenden, um zu den verschiedenen Teilen des Tutorials zu springen:

WordPress-Vorlagenhierarchie für Kategorieseiten

WordPress verfügt über ein leistungsfähiges Templating-System, mit dem Sie verschiedene Templates für unterschiedliche Bereiche Ihrer Website erstellen können.

Wenn eine Seite angezeigt wird, sucht WordPress nach einer Vorlage in einer vordefinierten hierarchischen Reihenfolge.

Um eine Kategorieseite anzuzeigen, sucht es nach Vorlagen in dieser Reihenfolge: category-slug.php → category-id.php → category.php → archive.php → index.php

Zunächst sucht WordPress anhand des Kategorie-Slugs nach einer Vorlage für die jeweilige Kategorie. Zum Beispiel wird die Vorlage category-design.php verwendet, um die Kategorie „Design“ anzuzeigen.

Wenn keine Kategorie-Slug-Vorlage gefunden wird, sucht WordPress nach einer Vorlage mit einer Kategorie-ID, z. B. category-6.php. Danach sucht es nach der generischen Kategorievorlage, die normalerweise category.php heißt.

Wenn keine allgemeine Kategorievorlage vorhanden ist, sucht WordPress nach einer allgemeinen Archivvorlage, z. B. archive.php. Schließlich wird die Vorlage index.php verwendet, um die Kategorie anzuzeigen.

Hier ist unser Leitfaden für WordPress-Vorlagenhierarchien.

WordPress category archive

Erstellen einer Kategorievorlage für Ihr Theme in WordPress

Werfen wir zunächst einen Blick auf eine typische category.php-Vorlage:

<?php
/**
* A Simple Category Template
*/

get_header(); ?> 

<section id="primary" class="site-content">
<div id="content" role="main">

<?php
// Check if there are any posts to display
if ( have_posts() ) : ?>

<header class="archive-header">
<h1 class="archive-title">Category: <?php single_cat_title( '', false ); ?></h1>

<?php
// Display optional category description
 if ( category_description() ) : ?>
<div class="archive-meta"><?php echo category_description(); ?></div>
<?php endif; ?>
</header>

<?php

// The Loop
while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>

<div class="entry">
<?php the_content(); ?>

 <p class="postmetadata"><?php
  comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments closed');
?></p>
</div>

<?php endwhile; 

else: ?>
<p>Sorry, no posts matched your criteria.</p>

<?php endif; ?>
</div>
</section>

<?php get_sidebar(); ?>
<?php get_footer(); ?>

Nehmen wir an, Sie haben eine Kategorie namens „Design“ mit dem Kategorie-Slug „Design“ und möchten diese Kategorie anders als andere anzeigen.

Dazu müssen Sie eine Vorlage für diese bestimmte Kategorie erstellen. Gehen Sie zu Erscheinungsbild “ Themen-Editor.

Klicken Sie in der Liste der Themendateien auf der rechten Seite auf category.php.Wenn Sie dort keine category.php-Datei haben, suchen Sie nach archive.php.

Theme category file editor

Wenn Sie eine dieser Vorlagen nicht finden können, ist die Wahrscheinlichkeit groß, dass Sie ein WordPress-Theme-Framework verwenden und dieses Tutorial für Sie nicht nützlich ist. Wir schlagen vor, dass Sie sich auf das spezifische Framework beziehen, das Sie verwenden.

Wenn Sie die oben genannten Dateien finden, kopieren Sie den gesamten Inhalt von category.php und fügen Sie ihn in einen Texteditor wie Notepad ein. Speichern Sie diese Datei als category-design.php.

Verbinden Sie sich dann mit einem FTP-Client mit Ihrem WordPress-Hosting und gehen Sie zu /wp-content/themes/ihr-aktuelles-theme/ und laden Sie die Datei category-design.php in Ihr Theme-Verzeichnis hoch.

Nun werden alle Änderungen, die Sie an dieser Vorlage vornehmen, nur auf der Archivseite dieser Kategorie angezeigt.

Mit dieser Technik können Sie Vorlagen für so viele Kategorien erstellen, wie Sie möchten. Verwenden Sie einfach category-{category-slug}.php als Dateinamen. Die Kategorie-Slugs finden Sie im Abschnitt Kategorien im WordPress-Verwaltungsbereich.

Hier ist ein Beispiel für eine category-slug.php-Vorlage. Beachten Sie, dass wir die gleiche Vorlage wie category.php mit wenigen Änderungen verwendet haben.

Da wir bereits wissen, für welche Kategorie sie verwendet werden soll, können wir Titel, Beschreibung oder andere Details manuell hinzufügen. Beachten Sie auch, dass wir <?php the_excerpt(); ?> anstelle von <?php the_content(); ?> verwendet haben .

<?php
/**
* A Simple Category Template
*/

get_header(); ?> 

<section id="primary" class="site-content">
<div id="content" role="main">
<?php
// Check if there are any posts to display
if ( have_posts() ) : ?>

<header class="archive-header">
<?php
// Since this template will only be used for Design category
// we can add category title and description manually.
// or even add images or change the layout
?>

<h1 class="archive-title">Design Articles</h1>
<div class="archive-meta">
Articles and tutorials about design and the web.
</div>
</header>

<?php

// The Loop
while ( have_posts() ) : the_post();
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>

<div class="entry">
<?php the_excerpt(); ?>

 <p class="postmetadata"><?php
  comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments closed');
?></p>
</div>

<?php endwhile; // End Loop

else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
</section>

<?php get_sidebar(); ?>
<?php get_footer(); ?>

Wenn Sie die category-slug-Vorlage nicht verwenden möchten, können Sie die category-id-Vorlage verwenden, um eine Vorlage für eine bestimmte Kategorie-ID zu erstellen. Hier erfahren Sie , wie Sie eine Kategorie-ID in WordPress finden.

Bedingte Tags für eine Kategorie verwenden

Bei der Erstellung von Vorlagen für Ihr Thema müssen Sie feststellen, ob Sie wirklich eine eigene Vorlage für die gewünschte Funktion benötigen.

In manchen Fällen sind die gewünschten Änderungen nicht allzu kompliziert und können mit Hilfe von bedingten Tags innerhalb einer allgemeinen Vorlage wie category.php oder sogar archive.php vorgenommen werden.

WordPress bietet Unterstützung für viele bedingte Tags, die Theme-Autoren in ihren Vorlagen verwenden können.

Ein Beispiel für ein bedingtes Tag ist is_category(). Mit diesem bedingten Tag können Sie Ihre Vorlagen so ändern, dass bei Erfüllung der Bedingung eine andere Ausgabe angezeigt wird.

Nehmen wir zum Beispiel an, Sie haben eine Kategorie für vorgestellte Beiträge mit der Bezeichnung „Vorgestellt“.

Nun möchten Sie auf der Seite des Kategoriearchivs einige zusätzliche Informationen für diese bestimmte Kategorie anzeigen. Fügen Sie dazu diesen Code in die Datei category.php direkt nach <?php if ( have_posts() ) : ?> ein.

<header class="archive-header">

<?php if(is_category( 'Featured' )) : ?>
	<h1 class="archive-title">Featured Articles:</h1>
<?php  else: ?>
	<h1 class="archive-title">Category Archive: <?php single_cat_title(); ?> </h1>
<?php endif; ?>

</header>

Eine Kategorievorlage mit Beaver Themer erstellen

MitBeaver Themer können Sie Layouts für Ihr Thema erstellen. Sie können die einzelnen Kategorien auswählen, in denen Sie die Vorlage verwenden möchten, und sie dann mit einem Drag-and-Drop-Tool bearbeiten.

Zuerst müssen Sie zu Beaver Builder “ Themer Layouts “ Neue Seite hinzufügen gehen.

Add new category template

Sie müssen ihm einen Titel geben.

Wählen Sie dann Ihre Kategorie unter der Option „Standort“.

Edit Beaver Themer layout

Von dort aus können Sie den Drag-and-Drop-Editor von Beaver Builder verwenden, um Ihre Kategorie-Layout-Seite nach Ihren Wünschen zu gestalten.

Beaver Themer bietet eine Vielzahl von Modulen, die Sie verwenden und verschieben können, um Ihre Kategorie-Layout-Seite zu gestalten.

Using Beaver Builder to design your category template

Wenn Sie fertig sind, klicken Sie einfach auf die Schaltfläche „Fertig“ und wählen Sie dann „Veröffentlichen“, um Ihre Kategorievorlage anzuwenden.

Sie können nun Ihre WordPress-Website besuchen, um die Kategorievorlage in Aktion zu sehen.

A category template made with Beaver Builder

Wir hoffen, dass dieser Artikel Ihnen geholfen hat, zu lernen, wie man Kategorievorlagen in WordPress erstellt. Vielleicht interessieren Sie sich auch für unseren Vergleich der besten Drag & Drop-WordPress-Seitenersteller für die Erstellung benutzerdefinierter Layouts und unseren Leitfaden zur Erstellung einer Mitgliederseite, mit der Sie Inhalte auf Basis von Kategorien einschränken können.

Wenn Ihnen dieser Artikel gefallen hat, dann abonnieren Sie bitte unseren YouTube-Kanal für WordPress-Videotutorials. Sie können uns auch auf Twitter und Facebook finden.

Offenlegung: Unsere Inhalte werden von unseren Lesern unterstützt. Das bedeutet, dass wir möglicherweise eine Provision verdienen, wenn Sie auf einige unserer Links klicken. Mehr dazu erfahren Sie unter Wie WPBeginner finanziert wird , warum das wichtig ist und wie Sie uns unterstützen können. Hier finden Sie unseren redaktionellen Prozess .

Das ultimative WordPress Toolkit

Erhalte KOSTENLOSEN Zugang zu unserem Toolkit - eine Sammlung von WordPress-bezogenen Produkten und Ressourcen, die jeder Profi haben sollte!

Reader Interactions

58 KommentareEine Antwort hinterlassen

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Gwyneth Llewelyn says

    I just wanted to thank you — not only for the clarity of the explanations, but, most importantly, for restricting your code to the essential, while keeping all typical WordPress conventions (in terms of styling) as they were originally coded (even if they have, today, a ‚retro‘ style of coding!).

    This simplifies, for beginners and forgetful experienced programmers alike, to fully integrate a category page on a theme that doesn’t support them; because even though every theme does it slightly differently, there is enough common ground for a simple template to do its job while delegating more complex functionalities to theme-specific functions. That is, at least, the case with well-written themes, of course.

    Thanks again!

  3. Muhammad Zeeshan says

    I want to create the same custom page for all categories but I don’t want to create it one by one. If I add a new category in the future, I want the same template for the new category as for the old one. How can I get this?

    • Alexandro Giles says

      You only need to create 1 category.php template, this category template will be used in any category archive that you create.

  4. Daniel says

    Hi – Its a very helpful tutorial but I am trying to show a specific category and its sub categories on a page – How do i do that ?

  5. Barbara says

    I’m putting my question here because it’s the closest topic to what I am looking for. My church is going to put out a newsletter using Constant Contact. Our current newsletter has both short items and longer articles. I want to use short excerpts of the longer articles in the newsletter with a link to the article online. To that end, I have created a category-newsletter and using a plugin Unique Headers have changed the header image. I want now to suppress the H1 in the header, but since the header is called from the post page, the only way I can think of to obtain the result that I want is to do a custom page/post in which I don’t call header.php but include the contents of header.php in my custom post page. I might even want to do a custom footer.

    How do I do that without causing an error?

  6. Steven Denger says

    This is a knowledgable tutorial for making templates – if you are an advanced user of code. This is what I see too much here- an explanation for the advanced users or developers but is of little to no value to beginners. I thought that this was WP BEGINNER – this is hardly a beginners tutorial and was of no help to me what-so-ever.

  7. Daniel says

    Hello, great tutorial. I really want to add a limit of 5 posts per page and have page numbering. Can someone help me with the code?

  8. Chris Smith says

    Thank you so much for writing this article – I was trying so hard to find where the categories were stored for my personal blog site. I had been through every php I could find and searched relentlessly for categories in my FTP/ control panel. Although the advice given here basically said it couldn’t help and i wouldn’t find it useful, it did encourage me to look at the content.php which was in the ‚framework‘ directory of the theme. If anyone else is using the free version of the plum theme and wants to know how to do this in ftp, I hope this comment is useful!

  9. Richard Lowe says

    My theme came without a template for categories, tags, etc. So this article is perfect since I want them.

    Question: Would it be best to do this in a child theme so custom changes are not lost if and when the theme is updated?

  10. Borislav says

    For Custom Single Post page templates by category one could make a separated folder called „single“ and then put inside all single templates like single-category-slug.php. + the general single.php. There was also necessary to add some code in functions.php. Can you do the same technique for Category page templates, like put all category-slug.php + the general category.php in a map called „category“ ? I wonder that just to have a better file oragization istead of having all category-slug.php among all other theme php files like header.php footer.php index.php etc.

  11. rami mike says

    Thanks… that’s very useful. What if i want an archive page that display all the posts from 3 of my 5 categories….
    How can i do that ?

  12. Mark says

    Nice tutorial, I really appreciate the huge investment in wordpress tutorial and also in OptinMonster. But I will like to point out something in the tutorial: In the category template, you forget to echo the single_cat_title( “, false );

    It should be:

    Category:

    Thanks

  13. Dan says

    When I use this template, I get the max set number of posts in the Dashboard, which is 10 posts only. When I select a category I want all of the posts for that category, not only the most recent 10. I tried adding query_posts(‚posts_per_page=50‘); at the beginning of the Loop, but when I do that then posts from a different category are appearing in my selection. Any ideas?

  14. Dnil says

    Hi, I have category.php file on my theme. But whenever I view it, it shows only the title and a brief summary of the post. I want to have image of the post instead of text appear below the blog title. Please help me sir. I can’t find a better solution. I’m a newbie at wordpress :( Thank you

  15. Dnil says

    Hi,

    I’m getting real problem on how can I add „Image“ in the category page instead of „text“? :( Please is anyone can help me here?

    Here’s my category.php


    Thanks in advance. Please email me on how to fix this stuff.

  16. SevenT says

    Thank you for this helpful post. But when i try a first one code. It make error.
    Parse error: syntax error, unexpected ‚<' in \category.php on line 22

    And the second one is same error on line 31

    What happen? I have checked it.

  17. Lisa says

    I am using Divi 2.1.4. I do not see any archive or category php. Can I use the index.php as the base and modify from there for a custom category page?

  18. JAspen says

    How would I have all my category page templates display on one page? I have 3 different category templates and look great on each single category page, but need them to display all together on one page.

  19. Bruce Bates says

    I solved my problem with your example code. You didn’t close the while loop on line 29 ?>

    29 while ( have_posts() ) : the_post();

  20. Bruce Bates says

    I am trying to create a theme (first time) and I am stuck on the category template. Have things changed as of wordpress 3.9? I literally copied and pasted the code you have here (removing the line numbers), saved the file, and tested it out and I get a fully blank page. Not even an opening html tag is happening when viewing outputted source.

  21. Deepa Govind says

    Hi,

    I am developing a child theme, and want to show a specific image alongside the category description — @ Category Archives page.

    ie, If category = Poetry, SHOW + description + post list
    if category = cooking, SHOW + description + post list
    if category = tutrial, SHOW + description + post list

    I know that we can put the IF-Condition in the category.php’s >> Archive header

    But, my list is pretty long — almost 20 categories
    and I donot want to clutter the actual category.php file

    Is it possible to write a custom function (in myfunc.php)
    and make a call at the category.php??

    Thank you

    • Deepa Govind says

      This is wierd, some of my text in the comment is missing
      so here it is again

      ie, If category = Poetry, SHOW QUILL IMAGE+ description + post list
      if category = cooking, SHOW CHEF IMAGE+ description + post list
      if category = tutrial, SHOW TEACHER IMAGE+ description + post list

  22. Lars says

    Hey! I have trouble with the theme I am developing. I want to show only one category pr. page, but when all posts for all categories shows up on all the pages. How can I show just one category pr. page without having to make a specific page for each page specifying the name of the category?

  23. Muhammed Ashique Kuthini says

    Can i get a function like showposts in this loop ? I am designer and recently came with development. I need to show the most recent post of the selected category in a different style.

  24. Cath says

    This seems straightforward but I’m having problems. I’m creating a child theme from a parent theme. The parent theme has an archive.php file only. In my child folder I want the archive.php for my Archives widget and for my Category widget, I want a category.php file. I’ve copied the archive.php code into a blank php file and saved it as category.php. The archive.php still defaults for both. Am I missing something? Thank you.

    • WPBeginner Support says

      Nope you are not missing anything. category.php should take over when ever a user is browsing a category page. This could happen for a number of reasons. For example WordPress may not be able to identify category.php file. Can you open category.php file in Appearance » Editor. Double check that you have not accidentally saved category.php as category.php.txt. Also check out our guide on creating child themes to make sure that you have created a child theme correctly.

      Admin

      • Cath says

        Hi. I am able to open category.php with the Appearance>Editor. Does the category.php file need to be added somewhere? Thank you.

        • Cath says

          Hi. I am able to open category.php with the Appearance>Editor. The file is saved in my child theme with the rest of my files that are working on my site. Do I need to add it to the functions.php file in order for WordPress to use category.php instead of archive.php?

  25. Lex says

    Thanks for your great article. Very helpful.

    I have a custom post type – “video“, and a custom taxonomy – „video_categories“ What would be the best way display them? I need a „home“ for all videos, and a page that lists videos from a category.

    archive-videos.php – „home“ listing page for all videos of all categories
    taxonomy-video_categories.php – a category listing page

    This is what I am thinking about. I feel there should be a better way. At the moment these two files have exactly the same code which is duplication.

    Thanks in advance for sharing your experience

  26. Amit Kumar says

    I liked the Idea of creating different designs for each category page. Can you please tell me how can I achieve a particular design for post under one specific category?

    For eg. All the post under category „Design“ will have a particular design format and background etc.

    I would be glad to have any link which can provide any hint related to this.

  27. Mark Roth says

    I’ve been wanting to do this for quite a while. It’s not that I don’t know how to do it, it’s that I keep forgetting…and being distracted by more important projects. Your post is a great reminder…and will be a handy reference point. I’ve added it to my bookmarks. Thanks!

Eine Antwort hinterlassen

Danke, dass du einen Kommentar hinterlassen möchtest. Bitte beachte, dass alle Kommentare nach unseren kommentarpolitik moderiert werden und deine E-Mail-Adresse NICHT veröffentlicht wird. Bitte verwende KEINE Schlüsselwörter im Namensfeld. Lass uns ein persönliches und sinnvolles Gespräch führen.