سلام و عرض ادب
می خواستم بدونم که وقتی میخوایم یه کوئری بزنیم به دیتابیس و مطالب رو به نمایش بگزاریم در شرایطی تم قالب به شکلی هست که اشکال نمایش مطالب باهم متفاوته آیا این درست هست که برای هرکدوم یه کوئری نوشت ؟
مثل این کد ؟
<div class="products">
<?php
// WP_Query arguments
$args = array (
'post_type' => array( 'product' ),
'post_status' => array( 'publish' ),
'nopaging' => true,
'order' => 'ASC',
'orderby' => 'menu_order',
'offset' => '1'
);
// The Query
$products = new WP_Query( $args );
// The Loop
if ( $products->have_posts() ) {
while ( $products->have_posts() ) {
$products->the_post();?>
<?php include 'loops/product-loop-style1.php'?>
<?php
}
} else {
echo "no products";
}
// Restore original Post Data
wp_reset_postdata();
?>
<?php
// WP_Query arguments
$args = array (
'post_type' => array( 'product' ),
'post_status' => array( 'publish' ),
'nopaging' => true,
'order' => 'ASC',
'orderby' => 'menu_order',
'offset' => '2'
);
// The Query
$products = new WP_Query( $args );
// The Loop
if ( $products->have_posts() ) {
while ( $products->have_posts() ) {
$products->the_post();?>
<?php include 'loops/product-loop-style2.php'?>
<?php
}
} else {
echo "no products";
}
// Restore original Post Data
wp_reset_postdata();
?>
</div>