如何编写一个php函数来定义一个包含html和php的变量?

时间:2011-02-08 04:09:05

标签: php wordpress plugins

我需要编写一个用html标记定义变量的函数,现在在html标记内我需要包含一个必须通过钩子然后输出到我的浏览器的php片段。在我的span标签中,我需要php片段才能正确输出。

php片段就是这个

<?php gravity_form(1, true, true, false, '', true); ?>

我的功能如下,请注意php代码片段的格式,我需要了解如何正确格式化它。

    function html_fxcntab_hidden_gform() {

    $html_fxcntab_hidden_gform_div = "<span style= \"display:none\";> <?php gravity_form(1, true, true, false, '', true); ?> </span>";

    echo $html_fxcntab_hidden_gform_div;
}

add_action('wp_footer', 'html_fxcntab_hidden_gform');

谢谢,

Michael Sablatura

1 个答案:

答案 0 :(得分:1)

function html_fxcntab_hidden_gform() {
?>
  <span style="display:none"> <?php gravity_form(1, true, true, false, '', true); ?> </span><?php
}