0
我試圖在我的wordpress上實現查詢。我想顯示post_type 「enseignement」 有兩個過濾器多值查詢自定義字段WP
- 「循環」
- 「代替」
此代碼的工作
<?php if($_GET['cycle'] && !empty($_GET['cycle']))
{
$cycle = $_GET['cycle'];
} else {
}
if($_GET['lieu'] && !empty($_GET['lieu']))
{
$lieu = $_GET['lieu'];
} else {
}
?>
<?php
$args = array(
'post_type' => 'enseignement',
'posts_per_page' => 10,
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'cycle', // name of custom field
'value' => $cycle, // matches exactly "red"
'compare' => 'LIKE',
),
array(
'key' => 'lieu',
'value' => $lieu,
'compare' => 'LIKE',
),
),
);
$loop = new WP_Query($args);
while ($loop->have_posts()) : $loop->the_post(); ?>
<?php get_template_part('content', 'enseignement', get_post_format());?>
<?php endwhile; ?>
我有網址喜歡這款本/?週期= cycle1 & lieu =巴黎
但是,如果我想多個「循環」或多個「l ieu「like this /?cycle = cycle1,cycle2 & lieu =巴黎,馬賽我不工作。
我該如何解決這個問題?