Skip to content

Instantly share code, notes, and snippets.

@aslamhindko
Last active July 11, 2016 15:03
Show Gist options
  • Save aslamhindko/46c5a7651417a944fe5701e7b3c84b8c to your computer and use it in GitHub Desktop.
Save aslamhindko/46c5a7651417a944fe5701e7b3c84b8c to your computer and use it in GitHub Desktop.
<?php $my_query = new WP_Query('page_id=13');
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
@asadaly111
Copy link

Great

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment