非常小黑 发表于 2013-10-15 00:04:30

问个问题,关于12-12这个主题

本帖最后由 非常小黑 于 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() 这个判断。
那么我傻了。。。
各位神出来帮忙啊。


猪农 发表于 2013-10-15 08:09:02




楼主说的应该不是 12-12,应该是2012 (= twentytwelve)

wordpress.org上已经有答案了,可以直接参考。 而且就是你需要的2012的。按orion310591的做法做吧

http://wordpress.org/support/topic/show-only-post-titles-in-category-pages





jinking 发表于 2013-10-15 08:26:05

一个不要PHP循环,一个无效掉?

taojia2011 发表于 2013-10-15 09:55:14

PHP学了很久,无所成啊

月光飞燕 发表于 2013-10-15 20:19:49

小黑的问题解决了吗,建议不要去搞代码哦

非常小黑 发表于 2013-10-15 21:13:23

月光飞燕 发表于 2013-10-15 20:19 static/image/common/back.gif
小黑的问题解决了吗,建议不要去搞代码哦

应该可以解决。
主要是试试silo架构,看看是不是可以一个站搞5-10个landing page和keywords
代码不改,主要就是看看模板是怎么个结构,以后熟悉了自己就可以调试。

phozan 发表于 2013-10-15 21:22:17

非常小黑 发表于 2013-10-15 21:13 static/image/common/back.gif
应该可以解决。
主要是试试silo架构,看看是不是可以一个站搞5-10个landing page和keywords
代码不改,主 ...

有点不明白广告商或联盟不允许一个域名下搞多个lp么    求解?


非常小黑 发表于 2013-10-15 22:23:08

phozan 发表于 2013-10-15 21:22 static/image/common/back.gif
有点不明白广告商或联盟不允许一个域名下搞多个lp么    求解?

这个怎么会不允许呢?
                        

phozan 发表于 2013-10-15 22:50:10

非常小黑 发表于 2013-10-15 22:23 static/image/common/back.gif
这个怎么会不允许呢?

那你完全可以在一个站下简历任意多个lp   是不是基于其他方面的考虑啊

非常小黑 发表于 2013-10-16 00:39:35

phozan 发表于 2013-10-15 22:50 static/image/common/back.gif
那你完全可以在一个站下简历任意多个lp   是不是基于其他方面的考虑啊

...

做一个标准架构,以后都按这个架构来。
回头我写一个标准架构供大家参考。

luguokankan 发表于 2013-10-16 03:20:15

content.php 找the_content(),前面加if(!is_category())
页: [1]
查看完整版本: 问个问题,关于12-12这个主题