Skip to content

Instantly share code, notes, and snippets.

@kish2011
Forked from sirbrillig/functions.php
Created January 24, 2024 15:46
Show Gist options
  • Save kish2011/8dc7df6d6f24591e4a8fd216476c7053 to your computer and use it in GitHub Desktop.
Save kish2011/8dc7df6d6f24591e4a8fd216476c7053 to your computer and use it in GitHub Desktop.
Post file using wp_remote_post in WordPress
<?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