How to create an offline form for submitting WP posts

You may have seen WP plugins that allow guests to submit posts. Those submissions proceed to the WP posts area where the admin can edit/publish them.

I want to create a form like this that I can install on my (and other people’s) computers, so they can fill out the form fields for a WP post, save offline, then send to my WP site when ready.

Read More

Can anyone tell me the steps involved, and, if there is a description for what type of thing this is, please let me know to aid my search.

I am learning code at present and want to learn while building tools.

Thanks

Related posts

Leave a Reply

1 comment

  1. Hi hope I can give you some hints with this answer.

    I don’t know what programming language you would like to use, but for the communication with your WordPress blog you could use the WP API to create a post over REST API. It offers a API to create and edit your WordPress Posts over HTTP.

    Your programm just have to check if an connection is possible and then execute the API calls.

    You could use an database to store all created post and then call the Create Post Task with the POST Method over HTTP for each post saved offline.
    When the creation was successful you could update your offline database, so that the post is marked as already created.