Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r17084 r18254  
    13241324 * @since 1.5
    13251325 * @deprecated 2.8
    1326  * @deprecated Use the_author_meta('description')
     1326 * @deprecated Use get_the_author_meta('description')
    13271327 * @see get_the_author_meta()
    13281328 *
     
    13521352 * @since 1.5
    13531353 * @deprecated 2.8
    1354  * @deprecated Use the_author_meta('login')
     1354 * @deprecated Use get_the_author_meta('login')
    13551355 * @see get_the_author_meta()
    13561356 *
     
    13801380 * @since 1.5
    13811381 * @deprecated 2.8
    1382  * @deprecated Use the_author_meta('first_name')
     1382 * @deprecated Use get_the_author_meta('first_name')
    13831383 * @see get_the_author_meta()
    13841384 *
     
    26032603}
    26042604
     2605/**
     2606 * Check for PHP timezone support
     2607 *
     2608 * @since 2.9.0
     2609 * @deprecated 3.2
     2610 *
     2611 * @return bool
     2612 */
     2613function wp_timezone_supported() {
     2614    _deprecated_function( __FUNCTION__, '3.2' );
     2615
     2616    return true;
     2617}
Note: See TracChangeset for help on using the changeset viewer.