Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
06-03-2017, 02:43 AM | #1 |
Confirmed User
Industry Role:
Join Date: Jun 2016
Posts: 111
|
Wodpress Auto Post
I want to auto post videos from a dedicated server onto my wordpress blog and use spintax on the text. Does anyone have any recommendations for software / plugins capable of doing this?
|
06-05-2017, 02:19 PM | #2 |
Confirmed User
Industry Role:
Join Date: Sep 2015
Posts: 88
|
Write directly to the database instead of using some http API, it will be much faster.
If I remember, you need to insert into wp_posts and update the wp_postmeta tables. If the blog is automated why bother with WP? Create a simple schema based on Open Graph, where you save all the meta data and the post content. The bonus is that you can implement better content recommendations and search engine. * If you're not into SQL, then something like the MEAN stack will do it for you. * Also look at ElasticSearch, you can query it directly using http requests. |