我是第一次构建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' );
我想念她,对吧?