Skip to content

Instantly share code, notes, and snippets.

@chekle
Created June 1, 2023 03:57
Show Gist options
  • Save chekle/969bdcdb5200bdd973d04f68f1a6470a to your computer and use it in GitHub Desktop.
Save chekle/969bdcdb5200bdd973d04f68f1a6470a to your computer and use it in GitHub Desktop.
Simple WP Query
<?php $args = array(
'post_type' => 'post',
'orderby' => 'menu_order',
'order' => 'ASC',
'posts_per_page' => 3,
);
$query = new WP_Query( $args ); ?>
<?php if ( $query->have_posts() ) { ?>
<?php while ( $query->have_posts() ) { $query->the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php } ?>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment