4

我只想加载没有标题、日期、评论等信息的帖子内容。有没有办法只抢帖子?

<?php if ( have_posts() ) : ?>
   <?php while ( have_posts() ) : the_post(); ?>
   <?php get_template_part( 'content', get_post_format() ); ?>
   <?php endwhile; ?>
<?php endif; ?>
4

2 回答 2

8

只需更换:

    <?php get_template_part( 'content', get_post_format() ); ?>

和:

    <?php the_content(); ?>

前者正在寻找诸如content-status.phpcontent-aside.php 之类的东西,或者最有可能的是,如果是普通的旧“帖子”,则在主题根目录中寻找content.php 。

于 2012-06-04T23:36:23.497 回答
8

你可以更换

 <?php get_template_part( 'content', get_post_format() ); ?>

 <?php get_template_part( 'content', 'myformat' ); ?> 

content-page.php并编辑带有名称的副本content-myformat.php,您可以在其中删除the_title()行。

于 2013-05-27T15:33:16.777 回答