PHP 在WordPress边栏中显示最近帖子的发布日期

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在WordPress边栏中显示最近帖子的发布日期相关的知识,希望对你有一定的参考价值。

<?php
  $args=array(
    'showposts'=>3,
    'caller_get_posts'=>1
  );
 $my_query = new WP_Query($args);
  if( $my_query->have_posts() ) {
    while ($my_query->have_posts()) : $my_query->the_post(); ?>
      <p><small><?php the_time('m.d.y') ?></small> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
    <?php
    endwhile;
  }
?>

以上是关于PHP 在WordPress边栏中显示最近帖子的发布日期的主要内容,如果未能解决你的问题,请参考以下文章