I need help with integration. I'm not a programmer, so I don't know what the strings needed are to get this thing working. Basically I want to include the category 3 into each single post in wordpress. <?php query_posts($query_string.'&cat=-3&&order=DESC'); Include it here below: <?php if (have_posts()) : while (have_posts()) : the_post(); ?> so it should be something like php if I have posts, include this string : ($query_string.'&cat=-3&&order=DESC') How do I get this to work?