Skip to content

A .NET library for creating files to be imported into Wordpress, using the WXR format.

License

Notifications You must be signed in to change notification settings

benrhughes/wxr.net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#wxr.net

wxr.net is a simple API for creating files to be imported into Wordpress, using the WXR format.

Usage

var site = new Site { Title = "A Test Site" };

var post = new Post
{
		Title = "My First Post",
		Date = DateTime.Now,
		Description = "A post, that was first",
		Content = @"<b>First!</b>"
};

site.Posts.Add(post);

site.Save(@"c:\users\admin\desktop");

Status

wxr.net currently produces valid, importable XML for sites, posts, tags and categories.

Comments, authors, media etc will be coming soon.

Installation

For now you will need to build the project yourself. It uses XMLGuy, but is otherwise has no dependencies.

About

A .NET library for creating files to be imported into Wordpress, using the WXR format.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages