您可以使用“操作”。更多信息:http://hookr.io/actions/wpcf7_mail_sent/
将此代码放入函数中。php:
function action_wpcf7_mail_sent( $contact_form ) {
// here your file redirect
header("Location: http://yourfileurl.com");
};
add_action( \'wpcf7_mail_sent\', \'action_wpcf7_mail_sent\', 10, 1 );
让我告诉你,如果它起作用,我现在无法测试。