存档页面-​​在后循环中插入跨度

时间:2018-09-11 20:03:35

标签: wordpress-theming

我正在使用自定义主题的存档页面上列出我的所有博客文章:

<?php
/* 
Template Name: Archives
*/
get_header(); ?>

<div id="content">
    <h1><?php the_title(); ?></h1>
    <?php while ( have_posts() )
    {?>
        <ul class="postArchive">
            <?php the_post();
            wp_get_archives('type=postbypost'); ?>
        </ul>
    <?php        
    }
    ?>
</div>

<?php get_sidebar(); ?>
<?php get_footer();

呈现的HTML看起来像这样:

<ul class="postArchive">
  <li>
    <a href='permalink'>Blog title</a>
  </li>
</ul>

但是我希望它看起来像这样:

<ul class="postArchive">
  <li>
    <span>Blog date</span>
    <a href='permalink'>Blog title</a>
  </li>
</ul>

如何告诉wp_get_archives在其中插入日期的跨度?

0 个答案:

没有答案