mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
1e3807c10d
* `Walker_Category_Checklist` class * `WP_Internal_Pointers` class * `template-functions.php` This is BC for plugins that are loading `wp-admin/includes/template.php` for fun. See #33413. Built from https://develop.svn.wordpress.org/trunk@34241 git-svn-id: http://core.svn.wordpress.org/trunk@34205 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
522 B
PHP
19 lines
522 B
PHP
<?php
|
|
/**
|
|
* Template WordPress Administration API.
|
|
*
|
|
* A Big Mess. Also some neat functions that are nicely written.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/** Walker_Category_Checklist class */
|
|
require_once( ABSPATH . 'wp-admin/includes/class-walker-category-checklist.php' );
|
|
|
|
/** WP_Internal_Pointers class */
|
|
require_once( ABSPATH . 'wp-admin/includes/class-wp-internal-pointers.php' );
|
|
|
|
/** Admin template functionality */
|
|
require_once( ABSPATH . 'wp-admin/includes/template-functions.php' );
|