Created
August 4, 2019 18:12
-
-
Save eto4detak/a2f4905dff70d6dd7d4046c10c7d4dda to your computer and use it in GitHub Desktop.
wp php cf7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/////////////////////////////////////////////////////////////////////////////////////////// | |
/////// добавить файл в cf7 | |
/////////////////////////////////////////////////////////////////////////////////////////// | |
add_filter( 'wpcf7_mail_components', 'filter_wpcf7_mail_components', 10, 3 ); | |
function filter_wpcf7_mail_components( $components, $wpcf7_get_current_contact_form, $instance ) { | |
$components['attachments'][] = __DIR__. '/screenshot.png'; | |
return $components; | |
}; | |
add_action( 'wpcf7_before_send_mail', 'wpcf7_file_download' ); | |
function wpcf7_file_download($cf7) | |
{ | |
$wpcf7 = WPCF7_ContactForm::get_current(); | |
$submission = WPCF7_Submission::get_instance(); | |
if ($submission) { | |
$data = $submission->get_posted_data(); | |
if (empty($data)) | |
return; | |
$submission->add_uploaded_file('png', __DIR__. '/screenshot.png' ); | |
return $wpcf7; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment