Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Created October 21, 2015 13:46
Show Gist options
  • Save celsofabri/fcb6d372525ca26e664f to your computer and use it in GitHub Desktop.
Save celsofabri/fcb6d372525ca26e664f to your computer and use it in GitHub Desktop.
Loop de Página (Section) / Loop Page
<!-- 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