gpt4 book ai didi

wordpress - 联系表格 7 和 cookie 值

转载 作者:行者123 更新时间:2023-12-02 14:57:56 26 4
gpt4 key购买 nike

早上好,我正在使用 Contact Form 7,在提交表单后通过电子邮件提交。现在我需要通过电子邮件发送一个存储在 cookie 中的值(这是一个推荐代码)。我该怎么做?

最佳答案

没有任何插件,只需添加一个新的自定义即可实现相同的功能非常简单 Special Mail Tag :

第 1 步:在主题的 functions.php 中添加以下代码

add_filter( 'wpcf7_special_mail_tags', 'wpcf7_my_cookie_mailtag', 10, 3 );
function wpcf7_my_cookie_mailtag( $output, $name, $html ) {
if ( '_my_cookie_special_tag' != $name ) { // rename the tag name as your wish;
return $output;
}

if ( ! $contact_form = WPCF7_ContactForm::get_current() ) {
return $output;
}

$val = isset($_COOKIE['my_cookie']) ? $_COOKIE['my_cookie'] : '';

return $html ? esc_html($val) : $val;
}

第 2 步:在您的 Mail Setup 中使用此简码 [_my_cookie_special_tag] .

关于wordpress - 联系表格 7 和 cookie 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52056532/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com