我使用WP查询来显示我的内容。这是一个自定义的帖子类型调用“enseignement”。查询有效,但如果我想实现分页,则不起作用。 URL在第2页/第2页中转换,但没有显示任何内容。
我的代码
<?php
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$args = array(
'post_type' => 'enseignement',
'posts_per_page' => 2,
'paged' => $paged,
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'cycle', // name of custom field
'value' => $_GET['cycle'], // matches exactly "red"
'compare' => 'LIKE',
),
array(
'key' => 'lieu',
'value' => $_GET['lieu'],
'compare' => 'LIKE',
),
),
);
$loop = new WP_Query( $args ); ?>
<?php if ($loop->have_posts()): while ($loop->have_posts()) : $loop->the_post(); ?>
<?php get_template_part( 'content', 'enseignement', get_post_format() );?>
<?php endwhile; ?>
<?php
next_posts_link( 'Older Entries', $loop->max_num_pages );
previous_posts_link( 'Next Entries »' );
wp_reset_query();
?>
<?php endif; ?>
你能帮帮我吗?
谢谢!
答案 0 :(得分:0)
我正在使用此功能,它100%正常工作。适应自己,一切都会好的。
Public CartItems : List<CartItem>