Skip to content

Instantly share code, notes, and snippets.

@nusserstudios
Last active April 5, 2018 13:23
Show Gist options
  • Select an option

  • Save nusserstudios/bb579da699a114433f67b0a25cd59618 to your computer and use it in GitHub Desktop.

Select an option

Save nusserstudios/bb579da699a114433f67b0a25cd59618 to your computer and use it in GitHub Desktop.
WP Conditional Loop within WP Loop
<?php query_posts( 'category_name=NAME&posts_per_page=-1' ); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<a href="<?php echo get_permalink( $id ); ?>">
<?php the_title(); ?>
</a>
<?php the_excerpt(); ?>
<?php endwhile; else : ?>
<?php esc_html_e( 'CUSTOM ERROR MESSAGE HERE.' ); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment