使用wordpresssharp将帖子缩略图保存在wordpress中不起作用

时间:2018-07-15 09:13:47

标签: c# wordpress xml-rpc wordpresssharp

我正在尝试使用带有以下代码的wordpresssharp(它使用XML-RPC)在wordpress数据库中保存带有缩略图的新帖子

        var img_url = SourceURL.Text + "/files/images/thumb/400_" + data.my_post.thumbnail;
        var featureImage = Data.CreateFromUrl(img_url);
        var img = data.client.UploadFile(featureImage);

        post.FeaturedImageId = img.Id;
        post.Id = data.client.NewPost(post);

然后检查数据库,我看到新的帖子和附件 并在wp-content/uploads中成功上传文件,但在附件记录中parent_post设置为0而不是新的帖子ID,并且wordpress中的缩略图字段为空 我该如何解决 我检查了打击链接

  

How to add thumbnail image into newPost

     

Featured Images & Custom Fields

0 个答案:

没有答案