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 | |
/** | |
* Generico Core | |
* | |
* Core plugin, holding theme-agnostic functionality specific to the site. | |
* | |
* @package Generico\Core | |
* @author Craig Simpson <craig@craigsimpson.scot> | |
* @license MIT | |
* @link https://craigsimpson.scot | |
* @copyright 2018 Craig Simpson | |
* | |
* @wordpress-plugin | |
* Plugin Name: Generico Core | |
* Plugin URI: https://craigsimpson.scot/ | |
* Description: Core plugin, holding theme-agnostic functionality specific to the site. | |
* Version: 1.0.0 | |
* Author: Craig Simpson | |
* Author URI: https://craigsimpson.scot/ | |
* Text Domain: generico-core | |
* License: MIT | |
* Domain Path: /languages | |
*/ | |
namespace Generico\Core; | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; | |
} |
Leave a Reply