我正在使用文章摘录,但当我点击阅读更多链接时,它不会显示所有文章段落,它只显示摘录的段落,这是代码行索引。php
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<h2><a href=" <?php the_permalink(); ?> "> <?php the_title(); ?> </a></h2>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( \'content\', \'none\' ); ?>
<?php endif; ?>
这是函数中的代码。php文件
function new_excerpt_more( $more ) {
return \' <a class="read-more" href="\'. get_permalink( get_the_ID() ) . \'">\' .__(\'Read More\', \'your-text-domain\') . \'</a>\';
}
add_filter( \'excerpt_more\', \'new_excerpt_more\' );