Advertisement
arnabkumar

custom_post_quary

Mar 28th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2.     global $post;
  3.     $args = array( 'posts_per_page' => 4, 'post_type'=> 'slider-items','category_name' => 'slider_photo');
  4.                                        
  5.                                           /*slider-items is post type you can change it */
  6.                                         /* posts_per_page -1 dile unlimited post asbe */
  7.                                 /*slider_photo hare is category_name you can change it*/
  8.    
  9.     $myposts = get_posts( $args );
  10.     foreach( $myposts as $post ) : setup_postdata($post); ?>
  11.    
  12.     <!-- content hare -->
  13.    
  14.    
  15.    
  16.    
  17.      
  18.     <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement