我正在尝试在这样的条件下添加foreach loop
的一部分:
foreach ( $woocommerce as $key => $woop ) {
$type = $woop['woo'];
if ( class_exists( 'WooCommerce' ) {
$woo = array(
'posts_per_page' => 3,
'post_type' => 'product',
)
}
}
但我收到了一个错误:
Parse error: syntax error, unexpected '{' for the *if ( class_exists( 'WooCommerce' ) {*
有没有办法在foreach循环中添加if?
答案 0 :(得分:3)
您只是忘了在条件
上关闭括号用此替换你的行 {{1}}