Answers for "WP_Term_Query example"

PHP
0

wp_query

<?php 
// the query
$the_query = new WP_Query( $args ); ?>
 
<?php if ( $the_query->have_posts() ) : ?>
 
    <!-- pagination here -->
 
    <!-- the loop -->
    <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
        <h2><?php the_title(); ?></h2>
    <?php endwhile; ?>
    <!-- end of the loop -->
 
    <!-- pagination here -->
 
    <?php wp_reset_postdata(); ?>
 
<?php else : ?>
    <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
Posted by: Guest on March-06-2021
0

WP_Query

$query = new WP_Query( array( 'author__in' => array( 2, 6 ) ) );
Posted by: Guest on August-12-2021

Browse Popular Code Answers by Language