Changeset 15230
- Timestamp:
- 06/11/2010 05:55:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r15229 r15230 2516 2516 2517 2517 /** 2518 * Checks if a post type is registered.2519 *2520 * @since 3.0.02521 * @deprecated 3.0.02522 * @deprecated Use post_type_exists()2523 * @see post_type_exists()2524 *2525 * @param string Post type name2526 * @return bool Whether post type is registered.2527 */2528 function is_post_type( $post_type ) {2529 _deprecated_function( __FUNCTION__, '3.0', 'post_type_exists()' );2530 return post_type_exists( $post_type );2531 }2532 2533 /**2534 2518 * Checks that the taxonomy name exists. 2535 2519 *
Note: See TracChangeset
for help on using the changeset viewer.