lucasmshepherd
10/14/2018 - 7:16 AM

Blank Plugin Template for functions.php

This is a blank template for creating a custom plugin. Create a directory i.e. 'wp-content/plugins/example-plugin/' then add your plugin function file in that folder i.e. 'example-plugin.php' then paste the code below and have some fun!

<?php

/**
* Plugin Name: Example Plugin
* Description: Example plugin.
* Author: Lucas M. Shepherd
* Version: 1.0.0
*/


/* * * Place custom functions here * * */


?>