gpt4 book ai didi

wordpress - 修改联系表 7 提交数据

转载 作者:行者123 更新时间:2023-12-04 16:31:03 25 4
gpt4 key购买 nike

我在网站上使用联系表 7,需要更改复选框提交的数据。复选框带有一个名为“如果您不想接收进一步营销”的标签,当将其检查到ADMINS Notification电子邮件中发送的值时,请显示复选框标签。所以它看起来像:

如果您不想接受进一步的营销,请在此处打勾:如果您不想接受进一步的营销,请在此处打勾

我想改变它,所以当它检查时发布的值为否。

我相信我可以使用以下 Action Hook 来实现这一点,但我不知道如何检查该功能中的复选框是否已被勾选并修改其值。

非常感谢任何帮助。

// define the wpcf7_posted_data callback 
function action_wpcf7_posted_data( $array ) {
// make action magic happen here...
};

// add the action
add_action( 'wpcf7_posted_data', 'action_wpcf7_posted_data', 10, 1 );

最佳答案

我相信你可以使用:

// define the wpcf7_posted_data callback 
function action_wpcf7_posted_data( $array ) {
//'checkbox-name' is the name that you gave the field in the CF7 admin.
$value = $array['checkbox-name'];
if( !empty( $value ) ){
$array['checkbox-name'] = "New Value";
}

return $array;
};
add_filter( 'wpcf7_posted_data', 'action_wpcf7_posted_data', 10, 1 );

关于wordpress - 修改联系表 7 提交数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40000543/

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