Make WordPress Core

Changeset 11269


Ignore:
Timestamp:
05/11/2009 05:56:34 PM (16 years ago)
Author:
ryan
Message:

Add the_author_aim() to deprecated. see #8776

File:
1 edited

Legend:

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

    r11204 r11269  
    16001600
    16011601/**
     1602 * Retrieve the AIM address of the author of the current post.
     1603 *
     1604 * @since 1.5
     1605 * @deprecated 2.8
     1606 * @uses $authordata The current author's DB object.
     1607 * @return string The author's AIM address.
     1608 * @deprecated Use the_author_meta('aim')
     1609 */
     1610function get_the_author_aim() {
     1611    _deprecated_function(__FUNCTION__, '2.8', 'get_the_author_meta(\'aim\')' );
     1612    return get_the_author_meta('aim');
     1613}
     1614
     1615/**
     1616 * Display the AIM address of the author of the current post.
     1617 *
     1618 * @link http://codex.wordpress.org/Template_Tags/the_author_aim
     1619 * @since 0.71
     1620 * @deprecated 2.8
     1621 * @see get_the_author_aim()
     1622 * @deprecated Use the_author_meta('aim')
     1623 */
     1624function the_author_aim() {
     1625    _deprecated_function(__FUNCTION__, '2.8', 'the_author_meta(\'aim\')' );
     1626    the_author_meta('aim');
     1627}
     1628
     1629/**
    16021630 * Retrieve the specified author's preferred display name.
    16031631 *
Note: See TracChangeset for help on using the changeset viewer.