All checks were successful
Release Plugin Zip / release (push) Successful in 4s
22 lines
885 B
PHP
22 lines
885 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: Tonys SportsPress Enhancements
|
|
* Plugin URI: https://github.com/anthonyscorrea/tonys-sportspress-enhancements
|
|
* Description: Suite of SportsPress Enhancements
|
|
* Author: Tony Correa
|
|
* Author URI: https://github.com/anthonyscorrea/
|
|
* Text Domain: tonys-sportspress-enhancements
|
|
* Domain Path: /languages
|
|
* Version: 0.1.3
|
|
*
|
|
* @package Tonys_Sportspress_Enhancements
|
|
*/
|
|
|
|
|
|
// Include other files here
|
|
require_once plugin_dir_path(__FILE__) . 'includes/open-graph-tags.php';
|
|
require_once plugin_dir_path(__FILE__) . 'includes/featured-image-generator.php';
|
|
require_once plugin_dir_path(__FILE__) . 'includes/sp-event-permalink.php';
|
|
require_once plugin_dir_path(__FILE__) . 'includes/sp-event-admin-week-filter.php';
|
|
require_once plugin_dir_path(__FILE__) . 'includes/sp-event-quick-edit-officials.php';
|