gpt4 book ai didi

php - 解释这是什么意思 : 'post__not_in' => array($post->ID)

转载 作者:行者123 更新时间:2023-11-28 16:18:19 27 4
gpt4 key购买 nike

您如何用简单的英语解释这段代码的含义?

'post__not_in' => array($post->ID)

如果有帮助,下面是完整的上下文。


// organise our options into a data object
$args = array(
'posts_per_page' => 3,
'orderby' => 'rand',
'post__not_in' => array($post->ID)
);

// a variable with our query and options
$query = new WP_Query( $args );

// do a loop with our new query code
if ($query->have_posts()): while ($query->have_posts()): $query->the_post(); ?>

<a href="<?php the_permalink(); ?>">
<h1><?php the_title(); ?></h1>
</a>

<?php endwhile; endif; ?>

最佳答案

此代码意味着当您使用 WP_Query 随机获取 3 个帖子以显示相关帖子或类似内容时 'post__not_in' => array($post->ID) 这将排除当前从该特定查询发布。

关于php - 解释这是什么意思 : 'post__not_in' => array($post->ID),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55558443/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com