PHP 显示最近更新的帖子/页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 显示最近更新的帖子/页面相关的知识,希望对你有一定的参考价值。
<?php
$today = current_time('mysql', 1);
$howMany = 5; //Number of posts you want to display
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")):
?>
<h2><?php _e("Recent Updates"); ?></h2>
<ul>
<?php
foreach ($recentposts as $post) {
if ($post->post_title == '') $post->post_title = sprintf(__('Post #%s'), $post->ID);
echo "<li><a href='".get_permalink($post->ID)."'>";
the_title();
echo '</a></li>';
}
?>
</ul>
<?php endif; ?>
以上是关于PHP 显示最近更新的帖子/页面的主要内容,如果未能解决你的问题,请参考以下文章
php 显示最近的帖子,没有粘贴帖子
php 显示wordpress最近的帖子
php 显示最近的帖子
PHP 显示最近的帖子
显示最近更新的文章/页面
PHP 在WordPress边栏中显示最近帖子的发布日期