如何在我的帖子页面上隐藏单个类别的帖子

时间:2016-09-06 作者:user3326594
<?php $query = new WP_Query( array(
    \'numberposts\' => 6,
    \'offset\' => 0
) ); ?>

<?php if ( $query->have_posts() ): ?>
    <?php while ( $query->have_posts() ): ?>
        <?php $query->the_post(); ?>
        <div class="col-md-4 com-xs-12 pannel">
            <div class="pannel-news">
                <?php the_post_thumbnail(); ?>
                <div class="sidebar-color">
                    <strong>
                        <a href="<?php the_permalink(); ?>">
                            <?php the_title( \'<h4>\', \'</h4>\' ); ?>
                        </a>
                    </strong>
                </div>
            </div>
        </div>
    <?php endwhile; ?>
<?php endif; ?>
1 个回复
SO网友:mmm

尝试category__not_in

$query = new WP_Query( array(
    \'numberposts\' => 6,
    \'offset\' => 0,
    "category__not_in" => 148,
) ); 
您将在此处看到更多选项:https://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters

相关推荐

Bad pages redirection

我有一个wordpress网站,只有一个私人页面(只能由登录用户查看)我在主题函数中使用以下代码。每次将页面URL放在浏览器上时,php都会重定向到登录页面。add_action( \'wp\', \'redirect_private_page_to_login\' ); function redirect_private_page_to_login(){ $queried_object = get_queried_object(); if (