2013-02-03 89 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(); ?>当这行得通。