Make WordPress Core

Changeset 15230


Ignore:
Timestamp:
06/11/2010 05:55:08 PM (15 years ago)
Author:
westi
Message:

Fell the dead wood. No point keeping a function as deprecated we only just introduced. See #13747

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/deprecated.php

    r15229 r15230  
    25162516
    25172517/**
    2518  * Checks if a post type is registered.
    2519  *
    2520  * @since 3.0.0
    2521  * @deprecated 3.0.0
    2522  * @deprecated Use post_type_exists()
    2523  * @see post_type_exists()
    2524  *
    2525  * @param string Post type name
    2526  * @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 /**
    25342518 * Checks that the taxonomy name exists.
    25352519 *
Note: See TracChangeset for help on using the changeset viewer.