我使用 WordPress。
我的想法看起来就像stackoverflow。我想在索引页面上不显示内容,但是当操作后的帖子内容将显示时,比如stackoverflow
<article id="container">
<?php if(have_posts()):?> <?php while(have_posts()): the_post();?>
<div class="post" id="post-<?php the_id(); ?>">
<div class="postmetadata small-font">
<ul>
<li><?php bawpvc_views_sc('post_view', 'bawpvc_views_sc'); ?></li>
<li><?php comments_popup_link();?></li>
</ul>
</div>
<div class="post-header">
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php the_excerpt(); ?>
</div><br />
<div class="date small-font">
<ul>
<li><?php the_author()." " ;?></li>
<li><?php the_modified_date();?></li>
<li><?php the_category(', '." ")?></li>
</ul>
</div>
</div>
<?php endwhile; ?>
与 the_content() :
与 the_excerpt() :
但我希望内容不显示。