ojorma / WordPressXF

This is a Xamarin.Forms app framework designed to turn WordPress Blogs / Sites into nice little apps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WordPressXF

This is a Xamarin.Forms app/framework (supporting Android, iOS and UWP) designed to turn easily 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/";
    }
}

About

This is a Xamarin.Forms app framework designed to turn WordPress Blogs / Sites into nice little apps.

License:MIT License


Languages

Language:C# 100.0%