Created
October 21, 2015 13:46
-
-
Save celsofabri/fcb6d372525ca26e664f to your computer and use it in GitHub Desktop.
Loop de Página (Section) / Loop Page
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
<!-- Loop com ID --> | |
<?php $my_query = new WP_Query('page_id=87'); | |
while ($my_query->have_posts()) : $my_query->the_post(); | |
$do_not_duplicate = $post->ID;?> | |
<div class="entry"> | |
<?php the_content(); ?> | |
</div> | |
<?php endwhile; ?> | |
<!-- / Loop com ID --> | |
<!-- Loop com Slug --> | |
<?php $my_query = new WP_Query('pagename=slug'); | |
while ($my_query->have_posts()) : $my_query->the_post(); | |
$do_not_duplicate = $post->ID;?> | |
<div class="entry"> | |
<?php the_content(); ?> | |
</div> | |
<?php endwhile; ?> | |
<!-- / Loop com Slug --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment