如果这是原始源代码,则有两个asterix对,这可能会破坏代码(被解释为注释,因此不可见)。
移除这些,它应该会工作。
<?php
// Start the loop
if(have_posts() ) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php $format = get_post_format(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class($format); ?>>
<?php the_title(); ?>
<?php the_category(); ?>
<?php the_date(); ?>
<?php the_excerpt(); ?>
<?php the_tags(\'<ul class="taglist"><li>\', \'</li><li>\', \'</li></ul>\'); ?>
<a href="<?php the_permalink(); ?>">read more</a>
</article>
<?php endwhile; ?>