/WordPressUWP

This is a framework for turning a WordPress site into a Universal Windows Plattform App.

Primary LanguageC#MIT LicenseMIT

WordPressUWP

Join the chat at https://gitter.im/ThomasPe/WordPressUWP

This is a Universal Windows Platform app framework designed to turn WordPress Blogs / Sites into nice little apps. It's built on

Features

working and planned features for WordPressUWP:

  • Show posts
  • Show comments
  • Settings page
  • Sign In
  • Add comment
  • Push Notifications (new posts, comments)
  • Live Tiles
  • Continuum Support
  • Enable Ads

Quickstart

WordPress Plugins

Since WordPress 4.7 the REST API has been integrated into the core so there's no need for any plugins to get basic functionality. If you want to access protected endpoints, this library supports authentication through JSON Web Tokens (JWT) (plugin required).

Getting Started

Just clone or download the repo and open it in Visual Studio. Before you can build you'll need to create a ApiCredentials.cs class inside the WordPressUWPApp.Utility folder. Here you need to enter your site uri.

namespace WordPressUWPApp.Utility
{
    public static class ApiCredentials
    {
        public static string WordPressUri = "http://yoursite.com/wp-json/";
    }

}