mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
d5c824beb7
See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@34418 git-svn-id: http://core.svn.wordpress.org/trunk@34382 1a063a9b-81f0-0310-95a4-ce76da25c4cd
17 lines
434 B
PHP
17 lines
434 B
PHP
<?php
|
|
/**
|
|
* Taxonomy API: Core category-specific functionality
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Taxonomy
|
|
* @since 2.1.0
|
|
*/
|
|
|
|
/** 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' ); |