dph23577 2014-06-15 07:15
浏览 37
已采纳

在wordpress页面中添加隐藏字段

have a custom html form in page:

    <form action="localhost/mail.php" id="contactForm" method="post">
    <ul>
        <li>
    <input type="hidden" name="submitted" value="USERNAME_HERE" /></li>
        <li>
            <button type="submit">Send request</button>
        </li>
    </ul>

</form>

Can I somehow add current logged username name in to value=... ? So when user will click "Send request" button, I will receive his username in email?

Tried use [userinfo field="user_login"] and :

    <?php global $current_user;
      get_currentuserinfo();

      echo 'Username: ' . $current_user->user_login . "
";

?>

But all php code was cut so it is useless :(

Please advise what I am doing wrong.

Thanks!

  • 写回答

3条回答 默认 最新

  • dqf98772 2014-06-15 11:11
    关注

    Generally I use page templates to work with PHP in pages. Once you have your template set up you can do something like this:

    <?php
    /*
     * Template Name: Custom Form
     * Description: Form with pre-filled username. 
     */
    
        global $current_user;
        get_currentuserinfo();
    ?>
    
     <form action="localhost/mail.php" id="contactForm" method="post">
     <ul>
        <li>
          <input type="hidden" name="submitted" value="<?php echo $current_user->user_login; ?>" />
        </li>
        <li>
            <button type="submit">Send request</button>
        </li>
    </ul>
    
    </form>
    

    You'll probably want to copy page.php from your theme into a file called page-form.php for your template, then modify page-form.php. Look for the_content(); and add your custom PHP there.

    You can read more about templates here: http://codex.wordpress.org/Page_Templates

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 Matlab在app上输入带有矩阵形式的初始条件发生错误
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序
  • ¥50 html2canvas超出滚动条不显示
  • ¥15 java业务性能问题求解(sql,业务设计相关)
  • ¥15 52810 尾椎c三个a 写蓝牙地址
  • ¥15 elmos524.33 eeprom的读写问题
  • ¥15 用ADS设计一款的射频功率放大器