Created
February 7, 2014 13:00
-
-
Save schikulski/8862236 to your computer and use it in GitHub Desktop.
Wordpress: query a singel page
This file contains 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 $page = new WP_Query("page_id=8"); while($page->have_posts()) : $page->the_post();?> | |
<?php endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment