-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
34 lines (29 loc) · 1019 Bytes
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Playing with the WP Interactivity API.
*
* @package tharsheblows-alphabet-guess
* @author Mary (JJ) Jay
* @copyright 2024
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: Alphabet Guess
* Plugin URI: https://github.com/tharsheblows/tharsheblows-alphabet-guess
* Description: A stupid game to try new WP interactivity API.
* Version: 0.1.1
* Requires at least: 6.5
* Requires PHP: 8.2
* Author: Mary (JJ) Jay
* Author URI: https://porchy.co.uk
* Text Domain: tharsheblows-alphabet-guess
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
namespace Tharsheblows\AlphabetGuess;
use Tharsheblows\AlphabetGuess\Hooks;
require 'vendor/autoload.php';
define( __NAMESPACE__ . '\PLUGIN_PATH', \plugin_dir_path( __FILE__ ) );
define( __NAMESPACE__ . '\PLUGIN_URL', \plugin_dir_url( __FILE__ ) );
// Add all hooks.
Hooks::init();