WordPress/wp-includes/taxonomy.php
Scott Taylor fa0dc526f4 Taxonomy: move WP_Tax_Query into its own file. taxonomy.php loads the new files, so this is 100% BC if someone is loading taxonomy.php directly. New files created using svn cp.
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.

Built from https://develop.svn.wordpress.org/trunk@33760


git-svn-id: http://core.svn.wordpress.org/trunk@33728 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-08-26 12:49:21 +00:00

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' );