It looks like nothing was found at this location.
/** * Plugin Name: GPA Governors Board * Description: Manage and display board of governors in grid or slider format. * Version: 1.0 * Author: GPA Academy */ defined('ABSPATH') or die('No script kiddies please!'); require_once plugin_dir_path(__FILE__) . 'post-type.php'; require_once plugin_dir_path(__FILE__) . 'shortcode.php'; function gpa_governors_styles() { wp_enqueue_style('gpa-governors-style', plugin_dir_url(__FILE__) . 'style.css'); } add_action('wp_enqueue_scripts', 'gpa_governors_styles');
It looks like nothing was found at this location.