mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Creates: `class-wp-tax-query.php` `taxonomy-functions.php` `taxonomy.php` contains only top-level code. Class file only contains the class. Functions file only contains functions. See #33413. git-svn-id: https://develop.svn.wordpress.org/trunk@33760 602fd350-edb4-49c9-b593-d223f7449a82
13 lines
221 B
PHP
13 lines
221 B
PHP
<?php
|
|
/**
|
|
* Taxonomy API
|
|
*
|
|
* @since 2.3.0
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Taxonomy
|
|
*/
|
|
|
|
require_once( ABSPATH . WPINC . '/taxonomy-functions.php' );
|
|
require_once( ABSPATH . WPINC . '/class-wp-tax-query.php' );
|