-
-
Save tommcfarlin/8d4e8a93a673d86f44d39c6e2893530e to your computer and use it in GitHub Desktop.
[WordPress] Don't Over Engineer the Solution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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