Skip to content

Instantly share code, notes, and snippets.

@Tjobbe
Created January 14, 2013 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tjobbe/ad7e35ccc543c7085993 to your computer and use it in GitHub Desktop.
Save Tjobbe/ad7e35ccc543c7085993 to your computer and use it in GitHub Desktop.
WordPress funny games
<?php get_header(); ?>
<?php query_posts($query_string . '&cat=-9,-10,-11,-12,-13,-14'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment