/ Published in: PHP
URL: http://rogertheriault.com/forums/topic.php?id=60
Using wordpress 2.6 and the Great Real Estate plugin. This code assumes your listing category is #4. It's output is an unordered list of the latest listings, latest at the top, with the date they were posted.
Expand |
Embed | Plain Text
<ul> <?php while (wp_list_pages('child_of=4&title_li=&sort_column=post_date&show_date=created&sort_order=desc')) : the_page(); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title();?></a></li> <?php endwhile; ?> </ul>
You need to login to post a comment.
