Advertisement
Guest User

Untitled

a guest
May 29th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $this_cpt_id = get_the_id();
  2. $test = new WP_Query(array('showposts' => 20, 'post_parent' => $this_cpt_id, 'orderby' => 'menu_order' , 'post_type' => 'solutions' , 'order' => 'ASC'));
  3. if ( $test->have_posts() ) :
  4. while ($test->have_posts()) :
  5. $test->the_post();
  6. echo '<a class="white-box" href="';
  7. echo the_permalink();
  8. echo '">';
  9. echo the_title();
  10. echo '</a>';
  11. endwhile; endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement