-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathai.php
More file actions
34 lines (31 loc) · 909 Bytes
/
ai.php
File metadata and controls
34 lines (31 loc) · 909 Bytes
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
/**
* AI
*
* @package ai
* @author WordPress.org Contributors
* @copyright 2025 Plugin Contributors
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: AI Experiments
* Plugin URI: https://github.com/WordPress/ai
* Description: AI experiments and capabilities for WordPress.
* Version: 0.4.1
* Requires at least: 7.0
* Requires PHP: 7.4
* Author: WordPress.org Contributors
* Author URI: https://make.wordpress.org/ai/
* License: GPL-2.0-or-later
* License URI: https://spdx.org/licenses/GPL-2.0-or-later.html
* Text Domain: ai
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Shortcut constant to the path of this file.
*/
define( 'AI_EXPERIMENTS_DIR', plugin_dir_path( __FILE__ ) );
require_once AI_EXPERIMENTS_DIR . 'includes/bootstrap.php';