Created
June 1, 2023 03:57
-
-
Save chekle/969bdcdb5200bdd973d04f68f1a6470a to your computer and use it in GitHub Desktop.
Simple WP Query
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 $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