我试图列出类别,但我需要排除几个。如何将排除类别添加到以下内容?
$size = sizeof( get_the_terms( $post->ID, 'product_cat' ) );
echo $product->get_categories('<p>' . _n( '', '', $size, 'woocommerce' ) . '</p>' );
非常感谢!
答案 0 :(得分:0)
请看一下: http://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
以下示例使用is_home。但您也可以使用is_page()函数检查您正在使用的页面,然后应用pre_get_posts。
function exclude_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '-1,-1347' );
}
}
add_action( 'pre_get_posts', 'exclude_category' );