Hi, kann mir jemand sagen, wie ich mit
PHP
<?php foreach ($comments as $comment) : ?>
<li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
<cite><?php comment_author_link() ?></cite> <?php _e('schreibt am','emire'); ?>
<?php if ($comment->comment_approved == '0') : ?>
<em><?php _e('Ihr Kommentar wartet auf die Freigabe durch den Moderator','emire'); ?></em>
<?php endif; ?>
<br />
<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php printf(__('%1$s at %2$s','emire'), get_comment_date(__('j. F Y','emire')), get_comment_time()) ?></a> <?php edit_comment_link(__('e','emire'),'',''); ?></small>
<?php comment_text() ?>
</li>
<?php /* Changes every other comment to a different class */
if ('alt' == $oddcomment) $oddcomment = '';
else $oddcomment = 'alt';
?>
Alles anzeigen
das gültige Winter/Sommerzeitformat erreiche?! Was muss ich ändern?
Danke für einen Ratschlag!