WP:获取the_excerpt链接以显示完整内容

时间:2016-04-14 09:08:54

标签: php html wordpress

我是第一次构建WP主题,我有摘录的问题当我点击阅读更多链接时我只看到帖子作为摘录而不是完整内容。

这是我的循环

   <?php

  if (have_posts()) :
  while (have_posts()) :
  the_post();
  ?>    

    <article class="artikel">

    <p class="datum_artikel"> <?php the_time('Y-m-j');?> </p>
    <h4 class="headline_artikel"> <?php the_title();?> </h4>        
    <div class="nyheten"> <?php the_excerpt(); ?> </div> 

</article>
 <?php
 endwhile;
 endif;
 ?>
 </section><!-- Nyheter slut -->

 <?php

 get_footer(); 
?>

我的代码在function.php

function new_excerpt_more( $more ) {
return ' <a class="read-more" href="'. get_permalink( get_the_ID() )  '">' . 
 __('Läs mer>>', 'your-text-domain') . '</a>';
 }

 add_filter( 'excerpt_more', 'new_excerpt_more' );

我想念她,对吧?

0 个答案:

没有答案