Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的类别页面中显示了完整的帖子。我想让它只发布带有缩略图的标题。我正在使用 wordpress 二十十二主题。
保持 <?php the_title(); ?>和<?php the_thumbnail(); ?>。删除<?php the_content(); ?>或<?php the_excerpt(); ?>,取决于您拥有的。
<?php the_title(); ?>
<?php the_thumbnail(); ?>
<?php the_content(); ?>
<?php the_excerpt(); ?>