你回来了?
我们一直在隔壁!

将wordpress媒体库中的图片按名称发布为一篇文章

#连接到您的 WordPress 博客:
from wordpress_xmlrpc import Client, WordPressPost
from wordpress_xmlrpc.methods import media, posts

wp = Client('http://example.com/xmlrpc.php', 'username', 'password')

#获取媒体库中的图片列表:
attachments = wp.call(media.GetMediaLibrary({"number":500}))

#对图片列表进行分组,按名称前缀相同的图片分为一组:
grouped_attachments = {}
for attachment in attachments:
    prefix = attachment['title'].split('_')[0]
    if prefix not in grouped_attachments:
        grouped_attachments[prefix] = []
    grouped_attachments[prefix].append(attachment)

#循环遍历图片分组,并将名称前缀相同的图片作为一篇文章发布:
for prefix, attachments in grouped_attachments.items():
    post = WordPressPost()
    post.title = prefix
    post_content = ''
    for attachment in attachments:
        post_content += '\n\n<img src="%s">' % (attachment['link'])
    post.content = post_content
    post.post_status = 'publish'
    wp.call(posts.NewPost(post))

这样,所有名称前缀相同的图片将作为一篇文章发布,并使用图片的名称前缀作为文章标题。

赞(0)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《将wordpress媒体库中的图片按名称发布为一篇文章》
文章链接:https://www.gebizhan.com/2330.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。

隔壁评论 抢沙发

快来看啊,隔壁站!

我们就是隔壁站的老王

隔壁邮箱隔壁TG

登录

找回密码

注册