Wordpress 3.6:类别下的页面

时间:2013-09-16 13:58:37

标签: php wordpress

问题: 我的菜单栏包含一组类别。帖子自动对齐。一个新的插件基于Pages。页面例如' P1'总是在主要网站上。

理念: 创建一个模板,将页面分配给特定类别,例如' P1' - > ' C1&#39 ;.我找到了一段代码

<?php if (is_category('c1')) : ?>

问题是我不知道怎么告诉程序:

if (is_category('c1')) :  show page / vice versa?>

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您需要在页面和类别之间使用命名标准。完成后,您可以执行以下操作(或类似的操作):

<?php if(is_category('c1)) : ?>
<?php query_posts('category_name=c1&order=asc');
if ( have_posts() ) : while( have_posts() ) : the_post();?>
    <div class="pageWrapper">
      <h3><?php the_title(); ?></h3>
      <?php the_content(); ?>
    </div>
<?php endwhile; else: ?>
<p>No content was found</p>
<?php 
     endif; 
wp_reset_query();//If writing your own queries, always a good idea to reset it. ?>