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

Posted

tags:

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

  1. <?php
  2. $args=array(
  3. 'showposts'=>3,
  4. 'caller_get_posts'=>1
  5. );
  6. $my_query = new WP_Query($args);
  7. if( $my_query->have_posts() ) {
  8. while ($my_query->have_posts()) : $my_query->the_post(); ?>
  9. <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>
  10. <?php
  11. endwhile;
  12. }
  13. ?>

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

突出显示Wordpress侧边栏中的当前帖子

根据日期限制 wordpress 中的档案列表

如何在 WordPress 中显示自定义的最近帖子?

按月获取用户帖子的存档 Wordpress

Wordpress 自定义演示侧边栏未出现在帖子上

通过自定义日期字段的 Wordpress 自定义存档页面链接