Last active
January 2, 2017 03:17
-
-
Save devloprs/d25f90a9b796ae50b6186951e3a74fd3 to your computer and use it in GitHub Desktop.
WPMUDEV-MarketPress Loop From https://premium.wpmudev.org/blog/the-easy-guide-to-theming-marketpress/
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
*/Normal loop | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php get_template_part( 'content', 'page' ); ?> | |
<?php comments_template( '', true ); ?> | |
<?php endwhile; // end of the loop. ?> | |
*/MP Loop | |
<?php while ( have_posts() ) : the_post(); ?> | |
<?php get_template_part( 'content', 'product' ); ?> | |
<?php comments_template( '', true ); ?> | |
<?php endwhile; // end of the loop. ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment