我有一个使用此代码排除类别的自定义循环:
query_posts(array('category__not_in' => array(2,6)));
我希望能够在自定义主题选项菜单中设置选项,而不是在代码中指定要排除的类别。调用该选项的代码是get_option('ex_cats');
。如何在query_posts语句中调用它?
答案 0 :(得分:0)
这个query_posts怎么样(array('category__not_in'=> array(get_option('ex_cats'))));
或 $ cats_id = get_option('ex_cats'); query_posts(array('category__not_in'=> array($ cats_id)));
我假设get_option('ex_cats')将返回一个字符串值。