Changeset 32348
- Timestamp:
- 05/05/2015 02:00:18 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r32327 r32348 2 2 /** 3 3 * Taxonomy API 4 * 5 * @since 2.3.0 4 6 * 5 7 * @package WordPress 6 8 * @subpackage Taxonomy 7 * @since 2.3.08 9 */ 9 10 … … 16 17 * 17 18 * This function fires twice: in wp-settings.php before plugins are loaded (for 18 * backwards compatibility reasons), and again on the 'init' action. We must avoid 19 * registering rewrite rules before the 'init' action. 19 * backwards compatibility reasons), and again on the {@see 'init'} action. We must 20 * avoid registering rewrite rules before the {@see 'init'} action. 21 * 22 * @since 2.8.0 23 * 24 * @global WP_Rewrite $wp_rewrite The WordPress rewrite class. 20 25 */ 21 26 function create_initial_taxonomies() { … … 130 135 131 136 /** 132 * Get a list of registered taxonomyobjects.137 * Retrieves a list of registered taxonomy names or objects. 133 138 * 134 139 * @since 3.0.0 135 * @uses $wp_taxonomies 140 * 141 * @global array $wp_taxonomies The registered taxonomies. 136 142 * 137 143 * @param array $args An array of key => value arguments to match against the taxonomy objects. … … 160 166 * @since 2.3.0 161 167 * 162 * @ uses $wp_taxonomies168 * @global array $wp_taxonomies The registered taxonomies. 163 169 * 164 170 * @param array|string|object $object Name of the type of taxonomy object, or an object (row from posts) … … 198 204 * @since 2.3.0 199 205 * 200 * @ uses $wp_taxonomies206 * @global array $wp_taxonomies The registered taxonomies. 201 207 * 202 208 * @param string $taxonomy Name of taxonomy object to return … … 219 225 * @since 3.0.0 220 226 * 221 * @ uses $wp_taxonomies227 * @global array $wp_taxonomies The registered taxonomies. 222 228 * 223 229 * @param string $taxonomy Name of taxonomy object … … 465 471 * 466 472 * @since 3.0.0 473 * 467 474 * @param object $tax Taxonomy object 468 475 * @return object object with all the labels as member variables … … 505 512 * 506 513 * @since 3.0.0 507 * @uses $wp_taxonomies Modifies taxonomy object 514 * 515 * @global array $wp_taxonomies The registered taxonomies. 508 516 * 509 517 * @param string $taxonomy Name of taxonomy object … … 530 538 * 531 539 * @since 3.7.0 540 * 541 * @global array $wp_taxonomies The registered taxonomies. 532 542 * 533 543 * @param string $taxonomy Name of taxonomy object. … … 1002 1012 * @access public 1003 1013 * 1014 * @global wpdb $wpdb The WordPress database abstraction object. 1015 * 1004 1016 * @param array $clause Query clause, passed by reference 1005 1017 * @param array $parent_query Parent query array. … … 1209 1221 * 1210 1222 * @since 3.2.0 1223 * 1224 * @global wpdb $wpdb The WordPress database abstraction object. 1211 1225 * 1212 1226 * @param array &$query The single query. … … 1461 1475 * 1462 1476 * @since 2.3.0 1463 *1464 * @global wpdb $wpdb WordPress database abstraction object.1465 1477 * 1466 1478 * @param string $term_id ID of Term to get children … … 3053 3065 * @since 2.3.0 3054 3066 * 3067 * @global wpdb $wpdb The WordPress database abstraction object. 3068 * 3055 3069 * @param int $object_id The object to relate to. 3056 3070 * @param array|int|string $terms A single term slug, single term id, or array of either term slugs or ids.
Note: See TracChangeset
for help on using the changeset viewer.