Changeset 42710 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 02/13/2018 04:53:44 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r42699 r42710 260 260 261 261 /** 262 * Checks thatthe taxonomy name exists.262 * Determines whether the taxonomy name exists. 263 263 * 264 264 * Formerly is_taxonomy(), introduced in 2.3.0. 265 * 266 * For more information on this and similar theme functions, check out 267 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 268 * Conditional Tags} article in the Theme Developer Handbook. 265 269 * 266 270 * @since 3.0.0 … … 278 282 279 283 /** 280 * Whether the taxonomy object is hierarchical.284 * Determines whether the taxonomy object is hierarchical. 281 285 * 282 286 * Checks to make sure that the taxonomy is an object first. Then Gets the … … 284 288 * 285 289 * A false return value might also mean that the taxonomy does not exist. 290 * 291 * For more information on this and similar theme functions, check out 292 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 293 * Conditional Tags} article in the Theme Developer Handbook. 286 294 * 287 295 * @since 2.3.0 … … 1316 1324 1317 1325 /** 1318 * Check if Term exists.1326 * Determines whether a term exists. 1319 1327 * 1320 1328 * Formerly is_term(), introduced in 2.3.0. 1329 * 1330 * For more information on this and similar theme functions, check out 1331 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1332 * Conditional Tags} article in the Theme Developer Handbook. 1321 1333 * 1322 1334 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.