Hallo marX,
Das Theme ist selbst gebaut... Und als ich es erstellt habe, hat es mit der "Standard" Archiv.php aus dem Kubrick auch funktioniert (etwas modifiziert).
Aus dem Link entnehme ich, dass auch mit der archiv.php funktionieren sollte, oder?
Jetzt ist es:
PHP
<?php /* If this is a tag archive */ } elseif(is_tag() ) { ?>
<h1 class="pagetitle">Archiv des Tags ‘<?php single_tag_title(); ?>’</h1>
und
PHP
<?php while (have_posts()) : the_post(); ?>
<div>
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="zum Artikel: <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('l,') ?> den <?php the_time('j. F Y') ?></small>
<?php the_content(); ?>
<p class="postmetadata">abgelegt unter: <?php the_category(', ') ?> <strong>|</strong> <?php comments_popup_link('noch keine Kommentare »', '1 Kommentar »', '% Kommentare »'); ?> <?php edit_post_link('Bearbeiten','<strong>|</strong> ',''); ?> <strong>|</strong> <?php the_tags('Tags: ', ', ', '<br />'); ?> </p>
</div>
Alles anzeigen