खोज…


परिचय

WP_Query पोस्ट, पेज और कस्टम पोस्ट प्रकारों के लिए क्वेरी करने के लिए। आपको विशिष्ट पोस्ट और पेज या कस्टम पोस्ट प्रकार के लिए सूची मिल जाएगी। WP_Query आपको अपने मानदंडों के अनुसार डेटाबेस से पोस्ट खींचने की अनुमति देता है।

नवीनतम 10 पोस्ट प्राप्त करें

$args = array(
    'post_type'=>'post',
    'posts_per_page' =>'10'
);
$latest_posts_query = new WP_Query( $args );
if($latest_posts_query->have_posts()) :
while ( $latest_posts_query-> have_posts()) : $latest_posts_query->the_post();
//Get post details here
endwhile;
endif;


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow