|
本帖最后由 非常小黑 于 2013-10-15 00:05 编辑
默认的列表页,显示的文章,都是全部文章(或者摘要)
怎么修改才能只显示post标题列表?
category.php这个文件代码如下:- get_header(); ?>
- <section id="primary" class="site-content">
- <div id="content" role="main">
- <?php if ( have_posts() ) : ?>
- <header class="archive-header">
- <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>
- <?php if ( category_description() ) : // Show an optional category description ?>
- <div class="archive-meta"><?php echo category_description(); ?></div>
- <?php endif; ?>
- </header><!-- .archive-header -->
- <?php
- /* Start the Loop */
- while ( have_posts() ) : the_post();
- /* Include the post format-specific template for the content. If you want to
- * this in a child theme then include a file called called content-___.php
- * (where ___ is the post format) and that will be used instead.
- */
- get_template_part( 'content', get_post_format() );
-
- endwhile;
- twentytwelve_content_nav( 'nav-below' );
- ?>
- <?php else : ?>
- <?php get_template_part( 'content', 'none' ); ?>
- <?php endif; ?>
- </div><!-- #content -->
- </section><!-- #primary -->
- <?php get_sidebar(); ?>
- <?php get_footer(); ?>
复制代码 get_template_part( 'content', get_post_format() )
应该是post的格式吧?
然后我在content.php里面,找啊找,没找到对应的 if is_category() 这个判断。
那么我傻了。。。
各位神出来帮忙啊。
|
|