为什么固定链接不起作用?

时间:2020-03-14 作者:S.H

在我的索引中。php I\'am循环如下:

<?php
  while(have_posts()) {
    the_post(); ?>
    <article>
      <h2><?php the_title(); ?></h2>
      <p>Veröffentlicht von <?php the_author_posts_link(); ?>am <?php the_time(\'n.j.y\'); ?> in <?php echo get_the_category_list(\', \'); ?></p>
    <p>
          <?php the_excerpt(); ?>  
  </p>
  **<p><a class="article-read-more" href="<?php the_permalink(); ?>">Continue reading &raquo;</a></p> 
    </article>**
  <?php }
  echo paginate_links();
?>
但是我没有看到“继续阅读”按钮。谢谢你的帮助。最好的,斯文

1 个回复
SO网友:user3135691

如果这是原始源代码,则有两个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; ?>

相关推荐