我正在尝试通过两个元值键发布,并且在正常页面中工作正常,但在无穷大上没有工作。问题是,滚动页面时没有收到 post 请求。
请看下面的代码。我在谷歌上做了很多搜索,但我没有得到任何答案,请帮忙
function wp_infinitepaginate(){
$args = array(
'cat' => $cats,
'meta_query' => array(
'relation' => 'AND',
array(
'value' => 'India'
),
array(
'value' => 'Hindi'
),
)
);
$query = new WP_Query( $args ); ?>
<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="art" >
<a class="title" href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a>
</div>
<?php endwhile; else : ?>
<p><?php esc_html_e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif;
exit;
}
add_action('wp_ajax_infinite_scroll', 'wp_infinitepaginate');
add_action('wp_ajax_nopriv_infinite_scroll', 'wp_infinitepaginate');