如何在WordPress中显示最近修改帖子的修改日期?

时间:2020-01-09 作者:Jax

我需要显示最近修改过的文章的最后修改日期。

1 个回复
SO网友:Andy Mardell

这对我有用。将此放置在functions.php 文件:

function prefix_last_modified_date() { 
  $last_modified_date = null;

  $args = array(
    \'post_type\'  => \'post\', // could be page, or a CPT
    \'orderby\'    => \'modified\',
    \'post_count\' => 1,
  );

  $last_modified = new WP_Query( $args );

  if ( $last_modified->have_posts() ) {
    $last_modified->the_post();
    $last_modified_date = get_the_modified_date();
  }

  wp_reset_postdata(); 

  return $last_modified_date;
} 
然后,您可以在主题中的任何位置显示上次修改的发布日期:

echo prefix_last_modified_date();