我只想加载没有标题、日期、评论等信息的帖子内容。有没有办法只抢帖子?
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php endif; ?>
只需更换:
<?php get_template_part( 'content', get_post_format() ); ?>
和:
<?php the_content(); ?>
前者正在寻找诸如content-status.php或content-aside.php 之类的东西,或者最有可能的是,如果是普通的旧“帖子”,则在主题根目录中寻找content.php 。
你可以更换
<?php get_template_part( 'content', get_post_format() ); ?>
和
<?php get_template_part( 'content', 'myformat' ); ?>
content-page.php
并编辑带有名称的副本content-myformat.php
,您可以在其中删除the_title()
行。