我正在使用我的single.php模板,并希望在我的侧边栏中显示3个帖子,但它应该只显示"父/之前"帖子,比当前帖子旧
到目前为止,这是我的代码:
<?php
$args = array(
'post_parent' => '$post->ID',
'posts_per_page' => '3',
);
$query = new WP_Query ($args);
if ( $query->have_posts() ) : ?>
<?php
echo '<div class="sidebar--parent-post">';
while ( $query->have_posts() ) : $query->the_post();
echo '<p class="sidebar--parent-title">' . the_post_thumbnail('thumbnail') .'<a href="' . get_permalink() . '">' . get_the_title() . '</a></p>';
echo '<p class="sidebar--parent-excerpt">' . excerpt('10') . '</p>';
endwhile;
echo '</div>';
wp_reset_postdata();
else :
// nothing
endif; ?>
我的问题是:
此代码始终显示最近的帖子和帖子本身。我想要排除当前帖子,只显示帖子,这些帖子是&#34;年龄大于或低于&#34;目前的帖子。
有什么想法吗? : - )