wordpress搜索结果排除某个分类
技术文章 2021年9月22日
从wordpress的搜索结果中排队某个分类的内容
<?php if ( have_posts() ) : query_posts($query_string .'&cat=-1,-2,-3'); while ( have_posts() ) : the_post(); ?>
//这是显示要调用的内容
<?php endwhile; ?>
<?php else : ?>
no wodepress.com!
<?php endif; ?>