标签: wordpress categories
在我的类别页面中显示完整帖子。我想让它只发布带有tumbnails的标题。我正在使用wordpress二十二主题。
答案 0 :(得分:1)
请 <?php the_title(); ?>和<?php the_thumbnail(); ?>。删除<?php the_content(); ?>或<?php the_excerpt(); ?>,具体取决于您拥有的内容。
<?php the_title(); ?>
<?php the_thumbnail(); ?>
<?php the_content(); ?>
<?php the_excerpt(); ?>