如何包含 <?php echo $page; ?> wordpress 中的内部联系表格 7 电子邮件
How to include <?php echo $page; ?> inside contact form 7 email in wordpress
如何在 wordpress 的联系表 7 中动态包含页面 <?php echo $page; ?>
的名称?我将代码放入 "functions.php" 但它不起作用。
function cs7() {
$var='<?php echo $page; ?>';
$html='<p>'.$var.'</p>';
return $html;
}
add_shortcode('cs7', 'cs7');
您可以使用CF7 特殊的Mail 标签来显示页面或post 邮件内容中表单提交的标题。
[_post_title]
更多信息here
如何在 wordpress 的联系表 7 中动态包含页面 <?php echo $page; ?>
的名称?我将代码放入 "functions.php" 但它不起作用。
function cs7() {
$var='<?php echo $page; ?>';
$html='<p>'.$var.'</p>';
return $html;
}
add_shortcode('cs7', 'cs7');
您可以使用CF7 特殊的Mail 标签来显示页面或post 邮件内容中表单提交的标题。
[_post_title]
更多信息here