2017 © Pedro Peláez
 

library ignition

WordPress plugin biolerplate

image

kylwes/ignition

WordPress plugin biolerplate

  • Wednesday, May 16, 2018
  • by kylwes
  • Repository
  • 0 Watchers
  • 0 Stars
  • 17 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 6 % Grown

The README.md

Ignition

Basic framework for expanding WordPress functionalities, (*1)

Table of Contents

[Getting Started](#getting-started)
[Prerequisites](#prerequisites)
[Installation](#installation)
[Usage](#usage)
[Authors](#authors)
[License](#license)

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system., (*2)

Prerequisites

Make sure you have composer installed and composer is configured, (*3)

composer init

Installation

composer install kylwes/ignition

Make sure you require the composer autoload, (*4)

require(__DIR__ . '/vendor/autoload.php');

Usage

Setup a base for your plugin in wp-content/plugins/{plugin}/{plugin}.php, (*5)

and make a namespace for your username, (*6)

namespace {author};

use Kylwes/Ignition/Plugin;

/**
 * @wordpress-plugin
 * Plugin Name:       {plugin}
 * Version:           0.0.1
 * Author
 */

 class {plugin} extends Plugin {
     public $plugin_name = {plugin}

     public $version = 0.0.1;

     public $autoload = [];
 }


Authors

  • Kylian Wester - Initial work - KylWes

See also the list of contributors who participated in this project., (*7)

License

This project is licensed under the MIT License - see the LICENSE.md file for details, (*8)

The Versions

16/05 2018

dev-master

9999999-dev

WordPress plugin biolerplate

  Sources   Download

by kylian wester