dongmeirang4679 2016-08-16 20:36
浏览 71
已采纳

WordPress update_user_meta不发布单选按钮值

I have been trying to make a custom form located on a separate page in my WordPress website. I ended up making a plugin that generates the form html and should post entered data in wp_usermeta. There are three radio button options, one of which is "other", that once clicked makes a textbox visible for alternative input.

The issue I have is that radio button values are not posted to wp_usermeta, only textbox input is (if entered).

Here is the html snippet for the form:

<form name="forming_the_team" method="POST" action="">
    <div id="about">
         A. Tell us about the team. <br/>
         <input type="radio" name="team" value="club" onclick="otherCheck()" id="club"/>Club<br/>
         <input type="radio" name="team" value="class" onclick="otherCheck()" id="class"/>Class<br/>
         <input type="radio" name="team" value="other" id="other-radio" onclick="otherCheck()"/>Other</br>
         <input type="text" name="team2" id="other-box"/><br/>
    </div>
    <br/>
    <input type="submit" value="Submit"/><br/>
</form>

otherCheck() onclick attribute is a javascript function that makes a text box visible if "other" radio button is checked.

Here is one of the things I tried (among others) to update wp_usermeta:

 <?php function handleDB() {
        $user_id = get_current_user_id();?>
        <script type="text/javascript">

        if(document.getElementById('club').checked) {
              <?php update_user_meta( $user_id, 'team', $_POST['team']);?>
        }
        if(document.getElementById('class').checked) {
              <?php update_user_meta( $user_id, 'team', $_POST['team']);?>
        } 
        if(document.getElementById('other-radio').checked)  {
              <?php update_user_meta( $user_id, 'team', $_POST['team2']);?>
        }

        </script>

        <?php     
}?>

I call handleDB() from the same page via shortcode:

function shortcodeDB() {
    ob_start();
    displayHTML();
    handleDB();
    return ob_get_clean();
}

add_shortcode('form_handle','shortcodeDB');

To summarize, text input gets posted successfully, while radio button values post NULL. What can I do to post radio button values as well.

Thank you in advance.

  • 写回答

1条回答 默认 最新

  • dt56449492 2016-08-16 20:55
    关注

    You can't mix client side code (javascript) and server side code (PHP) in the that way. The PHP is going to run no matter what in what you have posted. Here is a solution that should work using only PHP.

    <?php function handleDB() {
        $user_id = get_current_user_id();
        if( 'other' == $_POST['team'] ){
            update_user_meta( $user_id, 'team', $_POST['team2']);    
        }else{
            update_user_meta( $user_id, 'team', $_POST['team']);
        }
    }
    ?>
    

    If this doesn't work comment below and I will troubleshoot further but this should do the trick.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵