我正在嘗試添加這個(gè) if 語(yǔ)句<?php if( wc_memberships_is_user_member( null, 3171 ) ) { }?> 使用此代碼<input id="facebook" class="form-control" type="url" name="user[facebook]" value="<?php echo !empty($facebook) ? esc_attr($facebook) : ''; ?>" placeholder="<?php esc_html_x('Enter your facebook url', 'placeholder', 'direo'); ?>" />我就這樣毀了它 <?php if( wc_memberships_is_user_member( null, 3171 ) ) {<input id="facebook" class="form-control" type="url" name="user[facebook]" value="<?php echo !empty($facebook) ? esc_attr($facebook) : ''; ?>" placeholder="<?php esc_html_x('Enter your facebook url', 'placeholder', 'direo'); ?>" />}?>但是我收到錯(cuò)誤:“解析錯(cuò)誤:語(yǔ)法錯(cuò)誤,以“<input id=”facebook”開頭的行中出現(xiàn)意外的“<”我做錯(cuò)了什么,請(qǐng)幫助
1 回答

小怪獸愛吃肉
TA貢獻(xiàn)1852條經(jīng)驗(yàn) 獲得超1個(gè)贊
您不能將 html 元素放入 php 中,您需要在 html 元素之前結(jié)束 php 代碼,并在其之后再次啟動(dòng) php。
<?php
if( wc_memberships_is_user_member( null, 3171 ) ) {
?>
<input id="facebook" class="form-control" type="url" name="user[facebook]" value="<?php echo !empty($facebook) ? esc_attr($facebook) : ''; ?>" placeholder="<?php esc_html_x('Enter your facebook url', 'placeholder', 'direo'); ?>" />
<?php
}
?>
- 1 回答
- 0 關(guān)注
- 129 瀏覽
添加回答
舉報(bào)
0/150
提交
取消