<?php
// WP_Query arguments
$last_month_args = array(
'post_type' => 'post',
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
// Using the date_query to filter posts from last week
'date_query' => array(
array(
'after' => '1 week ago'
)
)
);
// The Query
$last_month_posts = new WP_Query( $last_month_args );
// The Loop
if ( $last_month_posts->have_posts() ) {
while ( $last_month_posts->have_posts() ) {
$last_month_posts->the_post();
// контент поста
the_title();
the_post_thumbnail();
}
} else {
// Если постов нет
}
// Restore original Post Data
wp_reset_postdata();
<?php $the_query = new WP_Query('page_id=128'); ?>
<?php while ($the_query->have_posts() ) : $the_query->the_post(); ?>
<?php if(get_field('sizes')): ?><?php while(has_sub_field('sizes')): ?>
<label for="r<?php the_ID();?>">
<?php endwhile; ?><?php endif; ?><?php endwhile; ?><?php wp_reset_postdata();?>
Пытаюсь сделать фильтр для подбора товаров wocommerce на основе свойств товара.
это просто текст на сайте который нужно менять через админку и его не нужно зацикливать.
Как поступить?
Пересмотрел кучу видеоматериалов, текстовых статей и т.п.
$args = array( 'posts_per_page' => 3 , 'offset'=>1 );
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
$query->the_post();
the_title();
}
the_posts_pagination();
wp_reset_postdata();