-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwm-llms-file-generator.php
More file actions
29 lines (23 loc) · 873 Bytes
/
Copy pathwm-llms-file-generator.php
File metadata and controls
29 lines (23 loc) · 873 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
<?php
/**
* Plugin Name: WM LLMs File Generator
* Plugin URI: https://workingmodel.co
* Description: Generates and maintains /llms.txt and /llms-full.txt files for LLM discovery.
* Version: 1.0.2
* Author: Working Model
* Author URI: https://workingmodel.co
* License: GPL-2.0-or-later
* Text Domain: wm-llms
* Domain Path: /languages
* Requires at least: 6.4
* Requires PHP: 8.1
*/
declare(strict_types=1);
defined( 'ABSPATH' ) || exit;
define( 'WM_LLMS_VERSION', '1.0.2' );
define( 'WM_LLMS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'WM_LLMS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
require_once WM_LLMS_PLUGIN_DIR . 'includes/class-plugin.php';
register_activation_hook( __FILE__, [ 'WM_LLMS_Plugin', 'activate' ] );
register_deactivation_hook( __FILE__, [ 'WM_LLMS_Plugin', 'deactivate' ] );
WM_LLMS_Plugin::get_instance();