Last active
April 5, 2018 13:23
-
-
Save nusserstudios/bb579da699a114433f67b0a25cd59618 to your computer and use it in GitHub Desktop.
WP Conditional Loop within WP Loop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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