Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active February 19, 2018 17:22
Show Gist options
  • Save djrmom/d8e02ceac548dfaeef9e811395962417 to your computer and use it in GitHub Desktop.
Save djrmom/d8e02ceac548dfaeef9e811395962417 to your computer and use it in GitHub Desktop.
facetwp query pages
<?php while ( have_posts() ): the_post(); ?>
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<?php endwhile; ?>
<?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