无序列表中的最新列表-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.
  1. <ul>
  2.  
  3. <?php while (wp_list_pages('child_of=4&title_li=&sort_column=post_date&show_date=created&sort_order=desc')) : the_page(); ?>
  4.  
  5. <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title();?></a></li>
  6.  
  7. <?php endwhile; ?>
  8.  
  9. </ul>

以上是关于无序列表中的最新列表-wordpress 2.6,带有很棒的房地产插件的主要内容,如果未能解决你的问题,请参考以下文章

PHP 排序算法之插入排序

2019-01-23 LaTeX中的有序列表和无序列表

CSS中的无序列表不会居中

python 从有序列表中删除不在无序列表中的条目

如何垂直对齐无序 html 列表中的项目?

如何根据每个无序列表中的列表项的数量在 Jquery 中隐藏按钮元素