如果我将此代码添加到侧边栏,我将无法在 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; ?>