我希望以下函数检查多个产品id的!==
(1427、1428、1429(。什么是最好的方法?
谢谢。
//add multistep
add_action('wapf_before_wrapper', 'wapf_before_wrapper');
function wapf_before_wrapper($product) {
if($product->get_id() !==1427)
return;
?>
<div class="wapf-progress">
<div class="wapf-progress-bar"></div>
<div class="wapf-progress-steps"></div>
</div>
<?php
}
add_action('wapf_before_product_totals', 'wapf_before_product_totals');
function wapf_before_product_totals($product){
if($product->get_id() !==1427)
return;
?>
<div class="wapf_step_buttons">
<button class="button wapf_btn_prev" style="display:none">Previous</button>
<button class="button wapf_btn_next">Next</button>
</div>
<?php
}
//end multistep
您的问题是关于php还是JavaScript?
问题标题询问关于JavaScript的问题,我会使用
if(![1427, 1428, 1429].includes(product.id)) { }
但是你的代码示例是php,我不太清楚,但我相信它有in_array
,所以像这样的东西可能会在中工作
$ids = array(1427, 1428, 1429)
if (in_array($product->get_id(), $ids) { }