我有
警告:wooopenclose :: replace_product_link()缺少参数3 在 /home/content/01/11974901/html/wp-content/plugins/woc-open-close/includes/classes/class-functions.php 在第39行
我的第39行如下所示:
function replace_product_link( $link_html, $product, $args ){
return $link_html;
}
这是怎么了?
答案 0 :(得分:0)
始终将可选参数列为具有默认值的最后一个参数。由于PHP没有命名参数,也没有“重载ala Java”,所以只有这样:
function replace_product_link( $link_html, $product, $args=null ){
return $link_html;
}