我正在一个搜索页面上工作,我想从该页面返回一个只有几行的数据或发布内容。我可以用 php 做到这一点,但我正在寻找 wordpress 方面的解决方案。我搜索了它,但没有令人满意的结果。
下面是显示内容的代码
<div class="testimonial-content">
<div class="thumb search_page_individual_contents">
<?php the_content();?>
<a href="<?php the_permalink(); ?>">
</a>
</div>
</div>
因为如果有任何内容,the_content() 将显示所有内容,但我希望它只显示该页面或帖子的前三行。