Advertisement
lemb

WP custom page show

May 29th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <?php
  2. $wp_query = new WP_Query( array(
  3.     'post_type'           => 'person', // тип поста
  4.     'post_status'         => 'publish',
  5.     'paged'               => $paged,
  6.     'posts_per_page'      => 99, // кол-во постов на странице ( -1 без ограничений)
  7.     'ignore_sticky_posts' => 1,
  8.     'order'               => 'ASC', // сортировка
  9.     'orderby'             => 'menu_order', // сортировка
  10. ) );
  11.  
  12. if ($wp_query->have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post();
  13. ?>
  14.     <h1 class="entry-title"><?php the_title(); ?></h1>
  15.     <h2 class="entry-post"><?= get_post_meta( get_the_ID(), 'person_post', true ) ?></h2>
  16.     <?php the_content(); ?>
  17. <?php endwhile; endif; wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement