我在网站上使用联系表格7,需要更改复选框提交的数据。如果您不想接收进一步的营销,该复选框有一个名为“在此处勾选”的标签,当选中此选项时,管理员通知电子邮件中发送的值将显示复选框标签。 所以它看起来像:
如果您不想接受进一步的营销,请在此处打勾:如果您不想接受进一步营销,请在此处打勾
我想改变它,所以当它检查发布的值是否。
我相信我可以使用以下动作钩子来实现这一点,但我不知道如何检查该函数中是否勾选了复选框并修改其值。
任何帮助都非常感激。
// 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 );
答案 0 :(得分:2)
我相信你可以使用:
// 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 );