I have this code that right now spits out all the posts regardless of category.
<?php /* Start the Loop */ ?>
<?php global $query_string;
query_posts( $query_string . '&ignore_sticky_posts=1' ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; // end of the loop. ?>
<?php wp_reset_query(); // reset the query ?>
How Do I do the same thing, except exclude posts with a category ‘blog’?
You can use below thing :-
OR
I found the answer! You had to do replace
with