How to hook into Contact Form 7 Before Send

后端 未结 4 541
终归单人心
终归单人心 2020-12-09 18:38

I have a plugin I am writing that I want to interact with Contact Form 7. In my plugin I added the following action add_action

add_action(\"wpcf7_before_send         


        
4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-09 18:49

    I'd like to add that you could just use the wpcf7_skip_mail filter:

    add_filter( 'wpcf7_skip_mail', 'maybe_skip_mail' );
    
    function maybe_skip_mail( $skip_mail, $contact_form ) {
    
        if( /* your condition */ )
            $skip_mail = true;
    
        return $skip_mail;
    
    }, 10, 2 );
    

提交回复
热议问题