Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.24 KB

README.md

File metadata and controls

36 lines (28 loc) · 1.24 KB

WordPressXF

This is a Xamarin.Forms app (supporting Android and iOS) framework designed to turn WordPress Blogs / Sites into nice little apps.

It's built on

Features

working and planned features for WordPressXF:

  • Show posts
  • Show comments
  • Use SplashScreen
  • Settings page
  • Sign In
  • Add comment

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 enter the URL to your WordPress blog/site in the file Statics.cs. And don't forget to add /wp-json/ at the end.

namespace WordPressXF.Utils
{
    public static class Statics
    {
        public static string WordpressUrl = "http://www.example.com/wp-json/";
    }
}