Last active
February 19, 2018 17:22
-
-
Save djrmom/d8e02ceac548dfaeef9e811395962417 to your computer and use it in GitHub Desktop.
facetwp query pages
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
<?php while ( have_posts() ): the_post(); ?> | |
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p> | |
<?php endwhile; ?> |
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
<?php | |
return array( | |
"post_type" => "page", | |
"post_status" => "publish", | |
"orderby" => "post__in", | |
"posts_per_page" => 6, | |
"post__in" => array( 2, 1733, 4, 1133, 1134, 501, 174, 156 ) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment