This is kind of a unique request. but id like to find something like it...
I'd like to build a site that uses user comments as the content. I'd like the newest comments to be at the top as if they were a blog post or something like it. I'd like the flexability and customization power of a wordpress blog.
Also the fact that I host the WP is desireable, not like a guestbook service although i know the guestbook 'loop' format for comments is what Im looking for.
Is there a way to get WP comments to show above each other instead of under? that would work for what im doing..
I'd like to build a site that uses user comments as the content. I'd like the newest comments to be at the top as if they were a blog post or something like it. I'd like the flexability and customization power of a wordpress blog.
Also the fact that I host the WP is desireable, not like a guestbook service although i know the guestbook 'loop' format for comments is what Im looking for.
Is there a way to get WP comments to show above each other instead of under? that would work for what im doing..
Am I articulating this clearly?
Locate a line which looks like the following:
<?php foreach ($comments as $comment) : ?>
and wrap around the $comments variable, array_reverse():
<?php foreach (array_reverse($comments) as $comment) : ?>
thanks