2013-02-03 119 views
0

如果我添加到側欄此代碼我無法顯示page.php中的任何東西我嘗試重置查詢,但沒有結果。WordPress的page.php不顯示帖子

<?php 
    $args = array(
      'post_type' => 'post', 
      'kalba' => 'lt', 
      'posts_per_page' => 7 
       ); 

$new_query = new WP_Query(); 
$new_query->query($args); 
?> 

<?php if ($new_query->have_posts()) : ?> 
<?php while ($new_query->have_posts()) : the_post(); ?> 
<?php $new_query->the_post();?>  

<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> 
<div class="sidebar-line"></div> 
<?php endwhile; ?> 
<?php endif; ?> 

回答

2

了迷惑y您在你的論點使用

'kalba' => 'lt', 

。 wp_query沒有任何這樣的說法「kalba」

可能是你可以試着改變你的觀點LIK

$args = array(
      'post_type' => 'post', 
      'posts_per_page' => 7 
       ); 

這樣 ..希望它工作正常

0

循環之前我添加<?php rewind_posts(); ?>當這行得通。