gpt4 book ai didi

php - wp_query 类别和主题标签

转载 作者:行者123 更新时间:2023-12-02 04:15:45 27 4
gpt4 key购买 nike

我正在尝试使用 wp_query 查询 WordPress 中的帖子。我想将帖子放入类别中并使用 has_tag 进行查询。我尝试使用

$args = array (
'post_type' => array( 'post' ),
'category_name' => 'footer',
);
// The Query
$social = new WP_Query( $args );
// The Loop
if ( $social->have_posts()&&has_tag('social') ) {
while ( $social->have_posts() ) {
$social->the_post();
the_content();
}
} rewind_posts();
?>

但这会加载所有帖子,而不仅仅是显示带有标签的帖子。

最佳答案

正确的方法是限制 WP_Query 本身。

例如

$args = array(
'post_type' => array( 'post' ),
'category_name' => 'footer',
'tag' => 'social'
);

$social = new WP_Query( $args );

if ( $social->have_posts() ) {
while ( $social->have_posts() ) {
$social->the_post();
the_content();
}
}

wp_reset_postdata();

要使用 has_tag,您需要首先设置全局帖子数据,例如setup_postdata( $social ),当您可以在查询本身中执行此操作时,这会产生大量的条件和循环开销,只是为了过滤结果。

关于php - wp_query 类别和主题标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33838424/

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