Juten Abend!
Ich schaffs einfach nicht Autor, Kommentar und Datum auf eine Zeile zu bekommen. WP haut mir immer ein <p> dazwischen. Hm wie kann ich das ändern?
Hätte es am liebsten so wie hier: http://www.kuperblog.com
PHP
<div id="comments">
<?php if ($comments) : ?>
<?php foreach ($comments as $comment) : ?>
<strong><?php comment_author_link() ?></strong>:
<?php if ($comment->comment_approved == '0') : ?>
<em>Your comment is awaiting moderation.</em>
<?php endif; ?>
<div class="comment"><?php comment_text() ?><div id="date"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('Y-m-d') ?>, <?php comment_time() ?></a> <?php edit_comment_link('edit',' ',''); ?></div></div>
Alles anzeigen