我正在使用此功能在仪表板上显示我最新帖子的日期和标题。
然而,对于一些帖子,日期根本没有显示出来——我有一种感觉,这可能是我随后点击“更新”按钮的帖子,但我不确定。。你知道为什么会这样吗?
function wps_recent_posts_dw() {
?>
<ol>
<?php
global $post;
$args = array( \'numberposts\' => 10, \'post_type\' => \'any\' );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li> (<? the_date(\'j M, Y @ G:i\'); ?>) <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ol>
<?php
}
function add_wps_recent_posts_dw() {
wp_add_dashboard_widget( \'wps_recent_posts_dw\', __( \'Recent Posts\' ), \'wps_recent_posts_dw\' );
}
add_action(\'wp_dashboard_setup\', \'add_wps_recent_posts_dw\' );