如何使用Wordpress编辑器将会话变量放在隐藏字段中?

时间:2013-12-25 11:46:23

标签: php html wordpress

我想使用wordpress编辑器在html隐藏输入字段中保存会话变量值。这是我隐藏的领域:

<input type="hidden" id="flv" name="flv" value="??"/>

我应该传递什么

value=""

这样我就可以获得会话变量值, 在PHP中,我的会话变量是

$_SESSION['captcha'];

1 个答案:

答案 0 :(得分:0)

只需在值中回显:

<input type="hidden" id="flv" name="flv" value="<?php echo $_SESSION['captcha]; ?>"/>

<强>更新

由于wordpress部分未在您的问题中的任何位置指定

如果您想通过wordpress编辑器直接进行操作,那么我担心,您无法直接执行此操作。您可以使用一些短代码来实现这一目标。

以下是开始使用的链接:

http://www.sitepoint.com/create-custom-shortcodes-for-wordpress-in-two-minutes/