显示最近更新的文章/页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示最近更新的文章/页面相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. $today = current_time('mysql', 1);
  3. $howMany = 5; //Number of posts you want to display
  4. if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_modified_gmt < '$today' ORDER BY post_modified_gmt DESC LIMIT $howMany")):
  5. ?>
  6. <h2><?php _e("Recent Updates"); ?></h2>
  7. <ul>
  8. <?php
  9. foreach ($recentposts as $post) {
  10. if ($post->post_title == '') $post->post_title = sprintf(__('Post #%s'), $post->ID);
  11. echo "<li><a href='".get_permalink($post->ID)."'>";
  12. the_title();
  13. echo '</a></li>';
  14. }
  15. ?>
  16. </ul>
  17. <?php endif; ?>

以上是关于显示最近更新的文章/页面的主要内容,如果未能解决你的问题,请参考以下文章

从超过 1 个表格中选择或创建最近 3 篇文章的视图

Android 中最近设备更新的 Toast 通知问题

FileReader:读取本地图片文件并显示

单击按钮后显示最近的数据(不同的页面)

最近更新了火狐5。0版,遇到一个问题,在工具--标签页管理器中,关闭标签页,关闭后跳转到那里

我们如何在 jQuery/php/mySQL 中显示最近的通知?更新