Wodpress Auto Post

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chimpchomp01
    Confirmed User
    • Jun 2016
    • 116

    #1

    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?
  • tomash999
    Confirmed User
    • Sep 2015
    • 88

    #2
    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.

    Comment

    Working...