PluginProbe
AI / 0.2.0
AI v0.2.0
1.3.0 1.2.0 1.1.0 1.0.2 1.0.1 1.0.0 0.9.0 trunk 0.1.1 0.2.0 0.2.1 0.3.0 0.3.1 0.4.0 0.4.1 0.5.0 0.6.0 0.7.0 0.8.0
ai / ai.php

ai.php in AI 0.2.0, at ai.php

35 lines 909 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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