我想在我的分类页面中显示一篇文章,文章标题和内容为400/550字,并带有阅读更多链接。我已经这样做了,但问题是,我的帖子并没有显示应有的摘录。
这在我下面的代码中。
<?php while ( have_posts() ) : the_post(); ?>
<div class="news">
<div class="grid-container">
<h2><a href="<?php the_permalink(); ?>" >
<?php the_title(); ?>
</a><span class="line"></span></h2>
<?php the_post_thumbnail() ?>
</a>
<div class="newsevent"><?php echo substr(get_the_excerpt(), 0,400); ?></div>
<a href="<?php the_permalink(); ?>" class="readmore">View</a> </div>
<?php endwhile;
?>
我想我需要改变
<?php echo substr(get_the_excerpt(), 0,400); ?>