Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created September 13, 2018 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommcfarlin/8d4e8a93a673d86f44d39c6e2893530e to your computer and use it in GitHub Desktop.
Save tommcfarlin/8d4e8a93a673d86f44d39c6e2893530e to your computer and use it in GitHub Desktop.
[WordPress] Don't Over Engineer the Solution
<?php
/**
* Acme Plugin Example
*
* @author Tom McFarlin <tom@pressware.co>
* @license GPL-3.0+
* @link https://pressware.co
* @since 1.0.0
* @copyright 2018 Tom McFarlin
*
* @wordpress-plugin
* Plugin Name: Acme Plugin Example
* Description: Provides consistent styling across the site for certain elements.
* Version: 1.0.0
* Author: Tom McFarlin
* Author URI: https://tommcfarlin.com
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
*/
include_once plugin_dir_path(__FILE__).'src/AddStyles.php';
include_once plugin_dir_path(__FILE__).'src/AddScripts.php';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment