gpt4 book ai didi

wordpress - 在 WP_Query 中仅显示 1 个帖子

转载 作者:行者123 更新时间:2023-12-05 05:16:09 26 4
gpt4 key购买 nike

我有一个自定义查询:

$arg = array(
'post_type' => 'reply',
);
$my_query = new WP_Query($arg);
if($my_query -> have_posts()){
while ($my_query -> have_posts()){
$my_query -> the_post(); } }

我想在此页面显示一篇文章?我如何限制此查询以显示 1 个帖子?*当我使用 posts_per_page => 1 不起作用,显示 10 个帖子。

最佳答案

尝试:

$arg = array(
"post_type" => "reply",
"numberposts" => 1, //how many posts to query from DB
"posts_per_page" => 1 // how many posts to display per page
}

我在代码中解释了每个的作用。

关于wordpress - 在 WP_Query 中仅显示 1 个帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50742766/

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