我正在尝试输入/选择其他案例研究,以显示页面ID =案例研究ID。原因是,目前我在个人案例研究的底部有一个内容块,可以阅读我编写的其他案例研究。虽然如此,但我目前仍推荐与我当前正在浏览的案例研究页面相同的案例研究,因为它是最新发布的案例研究。您可以在下面查看此内容:
正如您在img中所看到的那样,我在垃圾车案例研究中,并在此页面的“其他案例研究”部分中再次被推荐。我想排除单个案例研究页面上的“其他案例研究”部分中的渣土卡车案例研究。如果我在其他个案研究页面之一上,也是如此。
<div class='col-sm-10 col-sm-offset-1'>
<?php $case_study_posts = array(
'post_type' => 'case_study',
'showposts' => 2
);
$case_study = new WP_Query( $case_study_posts );
if ( $case_study->have_posts() ) : while ( $case_study->have_posts() ) : $case_study->the_post(); ?>
<?php $case_study_id = get_the_ID(); ?>
<?php if($page_id = $case_study_id): ?>
<article class="col-sm-6">
<a href="<?php the_permalink(); ?>"><img src="<?php the_field('case_study_featured_img'); ?>" alt="" /></a>
<h3><a href="<?php the_permalink(); ?>"><?php the_field('case_study_heading'); ?></a></h3>
<?php the_field('case_study_excerpt'); ?>
<a href="<?php the_permalink(); ?>"><button class="btn btn-dark">Read Case Study</button></a>
</article>
<?php endif; ?>
<?php endwhile; endif; ?>
</div>
答案 0 :(得分:0)
'post__not_in' => array (get_the_ID()),