我需要编写一个用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
答案 0 :(得分:1)
function html_fxcntab_hidden_gform() {
?>
<span style="display:none"> <?php gravity_form(1, true, true, false, '', true); ?> </span><?php
}