我正在尝试从我的博客页面中排除类别。我已经把代码都设置好了,根据法典,这应该行得通
$string = \'-\' . implode( \',-\', explode( \' \', $data[\'exclude_categories\'] ) );
测试时,上述行会将其打印到屏幕上
-主页-最新新闻
这是我试图从博客页面中删除的两个测试类别。然后我像这样开始我的查询
<?php query_posts($query_string . \'&cat=\' . $string);?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
my other code stuff here
当我测试博客页面时,所有的帖子都会显示出来。我想不出怎么了。