Changeset 43827 for branches/5.0/src/wp-includes/taxonomy.php
- Timestamp:
- 10/26/2018 01:23:29 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-includes/taxonomy.php
r43729 r43827 243 243 244 244 /** 245 * Checks thatthe taxonomy name exists.245 * Determines whether the taxonomy name exists. 246 246 * 247 247 * Formerly is_taxonomy(), introduced in 2.3.0. 248 * 249 * For more information on this and similar theme functions, check out 250 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 251 * Conditional Tags} article in the Theme Developer Handbook. 248 252 * 249 253 * @since 3.0.0 … … 261 265 262 266 /** 263 * Whether the taxonomy object is hierarchical.267 * Determines whether the taxonomy object is hierarchical. 264 268 * 265 269 * Checks to make sure that the taxonomy is an object first. Then Gets the … … 267 271 * 268 272 * A false return value might also mean that the taxonomy does not exist. 273 * 274 * For more information on this and similar theme functions, check out 275 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 276 * Conditional Tags} article in the Theme Developer Handbook. 269 277 * 270 278 * @since 2.3.0 … … 1266 1274 1267 1275 /** 1268 * Check if Term exists.1276 * Determines whether a term exists. 1269 1277 * 1270 1278 * Formerly is_term(), introduced in 2.3.0. 1279 * 1280 * For more information on this and similar theme functions, check out 1281 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1282 * Conditional Tags} article in the Theme Developer Handbook. 1271 1283 * 1272 1284 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.