I'm coding a class for posting on wp blogs and I'm using Joeblogs.dll. What I cannot find in the Post struct (or anywhere else) is how to create tags with the blog post.
Do you have any idea?
Here is my code:
Dim wrapper As New WordPressWrapper("http://www.website.co.uk/xmlrpc.php", txtUsername.Text, txtPassword.Text)
Dim lastname As String = wrapper.GetUserInfo.LastName.ToString
Dim firstname As String =…
I'm trying to add new post with thumb image but i still couldnt get success on it.
public static int addContent(int postType, string title, string body, string post_thumbnail, string[] categories, string[] tags, DateTime dateCreated)
{
Post post…
I am using JoeBlogs https://github.com/alexjamesbrown/JoeBlogs to publish my content from ASP.NET VB to wordpress. I am having some problems with posting my Post in Private Status instead of Public Status
Here is my code for creating a new Post…
How do I add thumbnail image content using joeblogs or xmlrpc?
add content code:
var post = new Post();
post.DateCreated = DateTime.Today.AddHours(0);
post.Title = textBox1.Text;
post.Body = richTextBox1.Text;
post.Categories = new string[] {…
I am using JoeBlogs https://github.com/alexjamesbrown/JoeBlogs to handle stuff on some of my wordpress websites. I am having some problems with creating a new category and uploading a picture.
Here is my code for creating a new category:
var…
I am using JoeBlogs API for XMLRPC. Everytime I try to get a page by the ID it throw this error:
XmlRpcPage[] : element 0 : struct mapped to type XmlRpcPage : member wp_author_id mapped to type Int32
From this code.
///
///…
I am developing C# Windows application that uses joeblogs WordPress api to post to WordPress blogs via this application. I have tested sample program with localhost url as localhost/wordpress/xmlrpc.php, it worked fine and posted successfully but…