How do I create a custom loop in wordpress that excludes categories listed in theme options
Posted
by mattloak
on Stack Overflow
See other posts from Stack Overflow
or by mattloak
Published on 2010-03-18T21:37:16Z
Indexed on
2010/03/18
21:41 UTC
Read the original article
Hit count: 261
I have a custom loop that excludes categories using this code:
query_posts(array('category__not_in' => array(2,6)));
Instead of specifying the categories to exclude in the code, I'd like to be able to set the option in my custom theme options menu. The code to call the option is get_option('ex_cats');
. How do I call this in my query_posts statement?
© Stack Overflow or respective owner