mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
172e37b007
See #33413. Built from https://develop.svn.wordpress.org/trunk@34110 git-svn-id: http://core.svn.wordpress.org/trunk@34078 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
366 B
PHP
15 lines
366 B
PHP
<?php
|
|
/**
|
|
* WordPress Category API
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/** Core category functionality */
|
|
require_once( ABSPATH . WPINC . '/category-functions.php' );
|
|
|
|
/** Walker_Category class */
|
|
require_once( ABSPATH . WPINC . '/class-walker-category.php' );
|
|
|
|
/** Walker_CategoryDropdown class */
|
|
require_once( ABSPATH . WPINC . '/class-walker-category-dropdown.php' ); |