Advertisement
eimkasp

WP Loop example

Jun 20th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. $args = array(
  2.     'post_type' => 'bc_treneriai',
  3.     'posts_per_page' => -1 
  4. );
  5. $query = new WP_Query( $args );
  6.  
  7.  
  8. ?>
  9.  
  10. <?php while ( $query->have_posts() ) : $query->the_post(); ?>
  11.         <!--  Inside the loop  -->
  12.         <h2><?php the_title(); ?></h2>
  13.         <?php the_field('vardas'); ?>
  14.  
  15.  
  16. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement