Answer the question
In order to leave comments, you need to log in
How to make Noidex for a page if the result is empty?
Hello. The site generates a list of posts through WP_Query
$args = array(
'posts_per_page' => 50,
'post_type' => 'uslugi',
'region' => $cat_slug,
's' => carbon_get_post_meta(get_the_ID(), 'o_seokey'),
'relevanssi' => true,
);
// запрос
$query = new WP_Query( $args ); ?>
<?php if ( $query->have_posts() ) : ?>
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
<?php get_template_part('parts/loop'); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else : ?>
<p><?php esc_html_e( 'Ничего не найдено.' ); ?></p>
<?php endif; ?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question