2013-06-01 208 views
0

我想在wordpress中製作我的頁面,顯示類別。我已經想通了如何顯示我想要的類別,查詢DB這樣WordPress的頁面導航欄

<?php if (have_posts()) : ?> 
<?php 
query_posts('cat=7'); 
?> 

問題是,當我把導航欄衝浪的網頁,這是行不通的......它顯示永諾一號頁...

這是我對整個頁面的代碼。我用Index.php作爲基礎。

<?php /* Template Name: Page4 */ ?> 

<?php get_header(); ?> 

    <div class="container_16 clearfix"> 
    <div class="grid_16 grid_content_sidebar"> 

    <div class="grid_11 alpha"> 
    <div id="content"> 

    <?php get_template_part('loop-meta'); ?> 

    <?php if (have_posts()) : ?> 
    <?php 
query_posts('cat=7'); 
?> 

     <?php while (have_posts()) : the_post(); ?> 

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

     <?php endwhile; ?> 

    <?php else : ?> 

     <?php get_template_part('loop-error'); ?> 

    <?php endif; ?> 

    <?php infinity_loop_nav(); ?> 

    </div> <!-- end #content --> 
</div> <!-- end .grid_10 --> 

<?php get_sidebar(); ?> 

</div> <!-- end .grid_16 --> 

</div> <!-- end .container_16 --> 

<?php get_footer(); ?> 

我正在使用Infinity template。你能幫忙弄清楚導航欄有什麼問題,或者是另一種方法來做到這一點?

回答

0

好吧,我已經找到了問題。只需在查詢行

.'&paged='.$paged 

看起來現在這個樣子

<?php 
query_posts('cat=7'.'&paged='.$paged); 
?> 
添加此