无序列表中的最新列表-wordpress 2.6,带有很棒的房地产插件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无序列表中的最新列表-wordpress 2.6,带有很棒的房地产插件相关的知识,希望对你有一定的参考价值。
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.
<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>
以上是关于无序列表中的最新列表-wordpress 2.6,带有很棒的房地产插件的主要内容,如果未能解决你的问题,请参考以下文章