gpt4 book ai didi

wordpress - 如何使用 slug 从类别中获取帖子?

转载 作者:行者123 更新时间:2023-12-02 09:11:52 24 4
gpt4 key购买 nike

我有自己的主题,我想在我的主页上显示特定类别的帖子。

到目前为止,我已经实现了这样的目标:

<?php
global $post;
$args = array( 'numberposts' => 10, 'category' => 6 );
$posts = get_posts( $args );
foreach( $posts as $post ): setup_postdata($post);
?>

<divs with the_title() the_excerpt() etc ></div>

<?php
endforeach;
?>

但是如果我想通过其 slug 获取类别怎么办?或者是否可以简单地在管理面板中创建一个类别选择框?

最佳答案

将您的category参数替换为category_name

<?php
global $post;
$args = array( 'numberposts' => 10, 'category_name' => 'cat-slug' );
$posts = get_posts( $args );
foreach( $posts as $post ): setup_postdata($post);
?>

<divs with the_title() the_excerpt() etc ></div>

<?php endforeach; ?>

了解更多信息:http://codex.wordpress.org/Class_Reference/WP_Query#Parameters

关于wordpress - 如何使用 slug 从类别中获取帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13202245/

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