ورود به حساب کاربری        عضویت
مشاوره تلفنی    05136615381 - 09155249646 - 05136639567  

false,
‘paged’ => $paged,
‘posts_per_page’ => ’25’,
‘post_type’ => ‘post’,
‘category__in’ => ’82’,
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
previous_posts_link( ‘

« پستهای قبلی

‘ );
while ( $query->have_posts() ) {
$query->the_post();?>

پستهای بعدی »

‘, $query->max_num_pages );
} else {
// no posts found
echo ‘

پستی پیدا نشد

‘;
}
// Restore original Post Data
wp_reset_postdata();
?>