任何人都可以解释为什么这个查询不起作用?我想排除用主页标记的帖子.它仍显示类别名称为"主页"的帖子...
<?php
$query = new WP_Query( 'category_name=-homepage');
?>
<?php if ( $query->have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( 'content', 'news' );
?>
<?php endwhile; ?>
<?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
Run Code Online (Sandbox Code Playgroud)