Hallo Leute,
ich habe ein kleines Problem, dass mich schon länger beschäftigt, ich aber noch nicht lösen konnte:
Auf meinem Blog:
http://www.webdesign-podcast.de wird in einer Unterüberschrift immer folgendes angezeigt:
verfasst von Pascal Bajorat, veröffentlicht am 15. April 2011 und ...
Allerdings verschwindet bei einigen Artikeln einfach das Datum, ich habe keine Ahnung warum, aber es sieht einfach mal total dämlich aus, wenn bei manchen ein Datum steht bei anderen nicht.
Der Code sieht wie folgt aus:
PHP
<? if (have_posts()) : ?>
<? $i=0; while (have_posts()) : the_post(); $i++; ?>
<h2><a href="<? the_permalink() ?>"><? the_title(); ?></a></h2>
<h5>verfasst von <a href="<? the_author_url() ?>" target="_blank"><? the_author() ?></a>, veröffentlicht am <? the_date(); ?> und <? comments_popup_link('noch nicht kommentiert', '1 mal kommentiert', '% mal kommentiert'); ?></h5>
<? the_content('weiterlesen...'); ?><br class="clear" />
.
.
.
.
Alles anzeigen
Ich hoffe jemand von euch weiß, wo das Problem liegen könnte.