【发布时间】:2019-01-09 02:21:17
【问题描述】:
我想在contactform7下方或上方显示自定义消息,而不发送电子邮件。我使用 before_send_email 函数厌倦了它,但没有任何效果。下面是我用过的函数。
add_action("wpcf7_before_send_mail", "wpcf7_do_something_else");
function wpcf7_do_something_else($cf7) {
$wpcf->skip_mail = true;
// Here I tried to use jquery or wordpress filter function to display custom message. but nothing is displaying.
return $wpcf;
}
请帮忙
【问题讨论】:
-
$wpcf7->skip_mail = true 什么也没做,因为你一开始还没有定义那个对象。
标签: php wordpress contact-form-7