odaat
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Display comments on front pageI think there may be a misunderstanding. The comments are displayed fine on the individual entry archive pages, but I want them displayed on the front page too.
Stupid thing.
Maybe MT 3.1 was a better idea after all.Forum: Themes and Templates
In reply to: Display comments on front pageOk. It didn’t fail. Just didn’t make any difference. Am I supposed to be adding any other code to display the comments under the posts?
I tried:
<?php if ($comments) { ?>
<?php foreach ($comments as $comment) { ?>
<div class="comment"><li id="comment-<?php comment_ID() ?>">
<div class="title"><?php comment_text() ?></div>
"> <?php comment_type(); ?> <?php _e("by"); ?> <?php comment_author_link() ?></div>
<?php } // end for each comment ?><?php } else { // this is displayed if there are no comments so far ?>
<?php _e("Make a comment, dammit!"); ?>
<?php } ?>
after the comments pop up link, but all I get is “Make a comment, dammit” appear at the bottom of the post, even when there are comments.Forum: Themes and Templates
In reply to: Display comments on front pageWell, you would think it would be that easy wouldn’t you. Unfortunately it doesn’t work.
Forum: Themes and Templates
In reply to: listsThanks for your help – I couldn’t adjust the paddin/margin and it would have messed up the rest of my sidebar. Anyhow, I fugured out the PHP:
<?php wp_get_archives(‘type=monthly&format=other&after=</br>’); ?>
…seems to work!Forum: Themes and Templates
In reply to: listsYeah, I got that (using list-style:none;) but unfortunately I am still left with an indentation I don’t want.