gpt4 book ai didi

php - WP——按类别获取帖子?

转载 作者:IT王子 更新时间:2023-10-29 00:20:13 25 4
gpt4 key购买 nike

我在我的页面模板中使用它来按类别获取帖子:

<?php 
if (is_page(19)){
?>
<ul>
<?php
global $post;
$args = array( 'category' => 'Testimonial' );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li class="testimonial"><?php the_content(); ?></li><br/>
<?php endforeach; ?>
</ul>
<?php } ?>

但它正在检索所有帖子。不仅仅是那些标有“推荐”的。知道我做错了什么吗?

最佳答案

'category_name'=>'this cat' 也有效,但未打印在 WP 文档中

关于php - WP——按类别获取帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11909304/

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