Create_post attachment
-
Hi guys
I am having hard time understand how to get the attachment working with the create_post. I have tried <input type=”file” name=”attachment”> that the documentation suggested and the post was successfully created but the attachments did not get upload.
Here are my codes:
PHP:
include ‘jsonDecode.php’;
if (isset($_POST[‘create-post’])) {$json_get_nonce_request = ‘https://example.com/api/get_nonce/?controller=posts&method=create_post’;
$nonce = jsonDecode($json_get_nonce_request);$json_create_post_request = ‘https://example.com/api/posts/create_post/?nonce=’.$nonce[‘nonce’].’&status=publish&title=’. $_POST[‘post-title’] .”;
$post = jsonDecode($json_create_post_request);}
in the body
<form action=”” enctype=”multipart/form-data” method=”post”>
<input type=”text” name=”post-title” placeholder=”title”>
<input type=”file” name=”attachment” >
<input type=”submit” name=”create-post” >
</form>Not sure if i’m doing right for the attachment
Thank you very much.
- The topic ‘Create_post attachment’ is closed to new replies.