Changes in sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/handbook.php [9990:10775]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/handbook.php
r9990 r10775 3 3 * Plugin Name: Handbook 4 4 * Description: Features for a handbook, complete with glossary and table of contents 5 * Version: 2.0 5 6 * Author: WordPress.org 6 7 * Author URI: https://wordpress.org/ … … 25 26 require_once __DIR__ . '/inc/blocks.php'; 26 27 28 add_action( 'plugins_loaded', function () { 29 if ( class_exists( 'WordPressdotorg\\Markdown\\Importer' ) ) { 30 require_once __DIR__ . '/inc/importer.php'; 31 } 32 }, 1 );
Note: See TracChangeset
for help on using the changeset viewer.