| 1 |
<?php |
| 2 |
/** |
| 3 |
* AI |
| 4 |
* |
| 5 |
* @package ai |
| 6 |
* @author WordPress.org Contributors |
| 7 |
* @copyright 2025 Plugin Contributors |
| 8 |
* @license GPL-2.0-or-later |
| 9 |
* |
| 10 |
* @wordpress-plugin |
| 11 |
* Plugin Name: AI Experiments |
| 12 |
* Plugin URI: https://github.com/WordPress/ai |
| 13 |
* Description: AI experiments and capabilities for WordPress. |
| 14 |
* Version: 0.2.0 |
| 15 |
* Requires at least: 6.9 |
| 16 |
* Requires PHP: 7.4 |
| 17 |
* Author: WordPress.org Contributors |
| 18 |
* Author URI: https://make.wordpress.org/ai/ |
| 19 |
* License: GPL-2.0-or-later |
| 20 |
* License URI: https://spdx.org/licenses/GPL-2.0-or-later.html |
| 21 |
* Text Domain: ai |
| 22 |
*/ |
| 23 |
|
| 24 |
// Exit if accessed directly. |
| 25 |
if ( ! defined( 'ABSPATH' ) ) { |
| 26 |
exit; |
| 27 |
} |
| 28 |
|
| 29 |
/** |
| 30 |
* Shortcut constant to the path of this file. |
| 31 |
*/ |
| 32 |
define( 'AI_EXPERIMENTS_DIR', plugin_dir_path( __FILE__ ) ); |
| 33 |
|
| 34 |
require_once AI_EXPERIMENTS_DIR . 'includes/bootstrap.php'; |
| 35 |
|