我的Wordpress网站使用LawPlus主题,它不会在帖子页面中的每个帖子块下显示帖子描述(将所有帖子显示为网格)。以下来源仅显示标题和图像,但无法显示帖子中的几行/单词。
/wp-content/themes/lawplus/default-templates/page.php
<?php
while ( have_posts() ) : the_post();
?>
<div class="page-detail-wrapper">
<?php echo lawplus_show_title( '<h1 class="title">', '</h1>' ); ?>
<?php lawplus_post_detail_thumbnail(); ?>
<div class="entry-content">
<?php
the_content( '<a href="%s" class="read-more">%s<i class="fa fa-angle-right"></i></a>',
esc_url( get_permalink() ),
esc_html__( 'Read more', 'lawplus' ) );
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'lawplus' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
</div>
<footer class="entry-footer">
<?php edit_post_link( esc_html__( 'Edit', 'lawplus' ), '<span class="edit-link">', '</span>' ); ?>
</footer>
</div>
<?php
if ( comments_open() ) :
comments_template();
endif;
?>
<?php endwhile; ?>