Tool for posting articles to multiple wordpress sites

totonos

Junior Member
Joined
Feb 6, 2012
Messages
105
Reaction score
11
Hello,

Does anyone use a tool for posting articles to multiple wordpress sites at the same time?
 
Not a commercial tool but I usually just setup a python script using the wordpress API..ezpz
https://developer.wordpress.org/rest-api/
If you were looking for an application you can always check-out the official wordpress app.
https://apps.wordpress.com/desktop/

The desktop app needs me to log in to every blog so it is time consuming :(

I was hopping to not lose time by developing the code on C# on my own and cosuming the rest api, but seems that it is the only free option.
Thanks!
 
You can try Easy Blog Networks

Thanks for your answer. Did knew that network.
I was thinking about something not so costly, so I will pass on that
However I will note their service. Looks fine

thanks!
 
Tools like ManageWP, MainWP are available that can help you post articles to multiple wordpress sites .
 
The desktop app needs me to log in to every blog so it is time consuming :(

I was hopping to not lose time by developing the code on C# on my own and cosuming the rest api, but seems that it is the only free option.
Thanks!
If you are not too picky about the features, this should take you about an hour to do.
 
Tools like ManageWP, MainWP are available that can help you post articles to multiple wordpress sites .

Thank you for your answer

ManageWP seems that doesnt have the option to bulk post to multiple sites at the same time
MainWP: just cant figure out where openssl.cnf - gave me so much hard time :(
 
If you are not too picky about the features, this should take you about an hour to do.

I just need to bulk post and with no images included, so I guess I have to go down the road of developing it
 
Two textBoxes, one button, one HttpClient, one JsonObject and one of whatever you choose to hold your login data.
In the time it took you to post in this thread, you could have done it :)

P.S. Not being rude. I've wasted my time searching for something ready, while I could have written it in less time.
 
Two textBoxes, one button, one HttpClient, one JsonObject and one of whatever you choose to hold your login data.
In the time it took you to post in this thread, you could have done it :)

P.S. Not being rude. I've wasted my time searching for something ready, while I could have written it in less time.

:)
Well thats just a part. I need to get the categories of each blog, store each blog credentials, categories
And then post to the ones that I want :)
So you should add about one hour :)
 
OK OK. Add a DataGridView for blog list along with credentials and a checkbox. If you are lazy like me, category list is a comma separated string.
private void GetCategories() - 15 rows
.....
Send me a screenshot when you are done :)
 
OK OK. Add a DataGridView for blog list along with credentials and a checkbox. If you are lazy like me, category list is a comma separated string.
private void GetCategories() - 15 rows
.....
Send me a screenshot when you are done :)


Have to write some xunit unit tests for today :(
Hopefully I will have time tomorow.
Will send you private msg :)
 
Back
Top