我有以下代码:
function wpb_hook_javascript() {
if (is_page( array( 244, 174, 697, 702, 699, 708, 713 ) ) ) {
?>
根据数组中的页面列表,我需要提供不同的表单。我目前有 FORM_ONE 等表单。此代码目前破坏了我的网站。
如果我删除 elseif & else 它会起作用,但我还有很多要添加的内容。
谁能告诉我我做错了什么?
TIA
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
删除底行的
endif;。如果您想使用
endif;,您必须使用以下语法:{ html goes here } { html goes here } { html goes here }问题是在这种情况下:
else (is_page( array( 205, 399, 401, 403, 405, 407 ) ) ) { ?>将 else 更改为
elseif或删除else之后的条件