Skip to content
Thomas Pentenrieder edited this page Sep 18, 2017 · 11 revisions

Welcome to the WordPressPCL wiki!

Setup

The WordPressPCL API Wrapper is avaiable through nuget:

> Install-Package WordPressPCL

Basic usage

using WordPressPCL;

// Initialize
var client = new WordPressClient("http://demo.wp-api.org/wp-json/");

// Posts
var posts = await client.ListPosts();