WordPressSharp icon indicating copy to clipboard operation
WordPressSharp copied to clipboard

A C# client to to interact with the WordPress XML-RPC API

Results 34 WordPressSharp issues
Sort by recently updated
recently updated
newest added

I'm getting an Internal Server Error exception when calling the method below. There are 827 published posts and set the number to that. If I remove the Number = 827...

How to publish articles with password

I've been using WordPresSharp for some time now. When this method is called I get this CookComputing.XmlRpc.XmlRpcServerException 'Not Acceptable' thrown. ``` var client = new WordPressClient(new WordPressSiteConfig { BaseUrl =...

I have a custom page template for the post. while I create new post via the API, the default template is assigned for the post. Then I need to go...

I change XML-RPC path, how can WordPressSharp recognize it?

Hi, i want to add term meta to termmeta datatable. How can i do that?

`post.FeaturedImageId = client.UploadFile(featureImage).Id; var id =Convert.ToInt32(client.NewPost(post));` When I want to sent a post to wordpress I should sent 2 request one for feature image an another for post contents. Could...

Hello, I am using WordPressSharp with VS2017 on Windows10. When I posted a new post with the following settings, post.PublishDateTime = DateTime.Now; post.Status = "publish"; I could successfully post. However,...

I have the plugin called "Featured Image from URL" installed and set to use the 1'st image in the post when and post is published and I am getting the...

i am trying to save new post with thumbnail in wordpress database with following code ``` var img_url = SourceURL.Text + "/files/images/thumb/400_" + data.my_post.thumbnail; var featureImage = Data.CreateFromUrl(img_url); var img...