好的,我正在创建一个自定义搜索客户端,该客户端接受下拉输入,然后显示符合该条件的所有产品。
我已经有了它的工作,如果您输入特定产品的信息,它将在结果中返回该产品。我希望它能完成它的功能,但如果没有选择下拉列表,我也希望它返回部分匹配。
现在,如果您选择四个下拉菜单中的两个,则不会返回任何结果。我希望它根据所选内容返回结果,无论是哪个下拉或选择了多少。
示例在这里:http://carotape.bigwolfdesigns.com/product-selector/
代码在这里:
<?if ( !$_GET['submit'] ) : ?>
<form method="get">
<?php
echo "<br><strong>Thickness:</strong><br>";
product_selector('milThickness_box', 'thickness');
echo "<br><strong>Adhesion:</strong><br>";
product_selector('adhesion_box', 'adhesion');
echo "<br><strong>Substrate:</strong><br>";
product_selector('substrate_box', 'substrate');
echo "<br><strong>Elongation:</strong><br>";
product_selector('elongation_box', 'elongation');
?>
<br>
<input type="submit" name="submit" value="submit">
</form>
<?php else :
$ad = array( 'key' => 'adhesion_box', 'value' => $_GET['adhesion'] );
$el = array( 'key' => 'elongation_box', 'value' => $_GET['elongation'] );
$th = array( 'key' => 'milThickness_box', 'value' => $_GET['thickness'] );
$su = array( 'key' => 'substrate_box', 'value' => $_GET['substrate'] );
$args = array(
'post_type' => 'post',
'meta_query' => array($ad, $el, $th, $su),
);
$myQuery = new WP_Query($args); ?>
<ul>
<?php
while ($myQuery->have_posts()) :
$myQuery->the_post(); ?>
<li><a href="<?php the_permalink(); ?>">
<?php the_title(); ?></a>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
product_selector();
函数只接受输入变量并使用它将特定的meta_key读入带有foreach()
的下拉列表。
function product_selector($var, $n) {
//Declare Globals
global $wpdb;
// set the meta_key to the appropriate custom field meta key
$a = $wpdb->get_col( $wpdb->prepare(
"
SELECT meta_value
FROM $wpdb->postmeta
WHERE meta_key = %s
",
$var
) );
//Remove duplicate values.
$b = array_unique($a);
//Remove null values.
$c = array_filter($b);
//Sort the array
$d = sort($c);
// Print our form.
echo "<select name=\"$n\">";
echo "<option value=\"\">Please Choose</option>";
foreach ( $c as $k => $v ) :
echo "<option value=\"$v\">$v</option>";
endforeach;
echo "</select>";
}
答案 0 :(得分:1)
首先,您必须检查$_GET[]
是否为空,然后将值分配给数组。
if( !empty($_GET['adhesion']) {
$ad = array( 'key' => 'adhesion_box', 'value' => $_GET['adhesion'] );
}