我们用到 WordPress 的 xmlrpclib,步骤:
安装 python 和 xmlpc。
然后用下面代码新增一篇文章:
代码:
import datetime, xmlrpclib
wp_url = "http://www.awaimai.com/xmlrpc.php"
wp_username = ""
wp_password = ""
wp_blogid = ""
publish = True
server = xmlrpclib.ServerProxy(wp_url)
title = "This is title"
content = "This is content"
date_created = xmlrpclib.DateTime(datetime.datetime.strptime("2011-10-20 21:08", "%Y-%m-%d %H:%M"))
categories = ["category here"]
tags = ["sometag", "othertag"]
data = {'title': title, 'description': content, 'dateCreated': date_created, 'categories': categories, 'mt_keywords': tags}
post_id = server.metaWeblog.newPost(wp_blogid, wp_username, wp_password, data, publish)
print(post_id)