gpt4 book ai didi

jquery - 仅在首页 WordPress 查询中排除类别

转载 作者:行者123 更新时间:2023-12-01 03:06:51 24 4
gpt4 key购买 nike

我只需要从首页的查询中排除类别。但每个页面上都排除了类别。这是我在functions.php中的代码:

function remove_category( $query ) {

if ( $query->is_front_page() ) {
$query->set( 'cat', '-32075' );
}
return $query;
}
add_action( 'pre_get_posts', 'remove_category' );

最佳答案

试试这个

function exclude_category($query) {
if ( is_page('slug-of-page') && isset($query) ) {
$query->set('cat', '-3');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');

function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-5' );
}
return $query;
}

add_filter( 'pre_get_posts', 'exclude_category_home' );

关于jquery - 仅在首页 WordPress 查询中排除类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57690945/

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