-
-
Save jrtaylor-com/ca3c593911f5d0517bd44f94bfcb6725 to your computer and use it in GitHub Desktop.
Post file using wp_remote_post in WordPress
This file contains 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 | |
$local_file = 'file_path'; //path to a local file on your server | |
$post_fields = array( | |
'name' => 'value', | |
); | |
$boundary = wp_generate_password( 24 ); | |
$headers = array( | |
'content-type' => 'multipart/form-data; boundary=' . $boundary, | |
); | |
$payload = ''; | |
// First, add the standard POST fields: | |
foreach ( $post_fields as $name => $value ) { | |
$payload .= '--' . $boundary; | |
$payload .= "\r\n"; | |
$payload .= 'Content-Disposition: form-data; name="' . $name . | |
'"' . "\r\n\r\n"; | |
$payload .= $value; | |
$payload .= "\r\n"; | |
} | |
// Upload the file | |
if ( $local_file ) { | |
$payload .= '--' . $boundary; | |
$payload .= "\r\n"; | |
$payload .= 'Content-Disposition: form-data; name="' . 'upload' . | |
'"; filename="' . basename( $local_file ) . '"' . "\r\n"; | |
// $payload .= 'Content-Type: image/jpeg' . "\r\n"; | |
$payload .= "\r\n"; | |
$payload .= file_get_contents( $local_file ); | |
$payload .= "\r\n"; | |
} | |
$payload .= '--' . $boundary . '--'; | |
$response = wp_remote_post( $req, | |
array( | |
'headers' => $headers, | |
'body' => $payload, | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment