0

我正在一个搜索页面上工作,我想从该页面返回一个只有几行的数据或发布内容。我可以用 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() 将显示所有内容,但我希望它只显示该页面或帖子的前三行。

4

2 回答 2

3

您能否在您的搜索结果显示时使用此代码:

<?php the_excerpt(); ?>

并在function.php中加入这行代码

function new_excerpt_more($more) {
       global $post;
    return '... <a href="'. get_permalink($post->ID) . '">Read more</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');


function custom_excerpt_length( $length ) {
    return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
于 2013-09-09T07:05:29.810 回答
0

您也可以尝试wp_trim_words()

<?php
   echo wp_trim_words(the_content(), 40, 
                            '<a href="'. get_permalink() .'"> ...Read More</a>');
?>
于 2013-09-09T07:23:26.830 回答