Changeset 11450 for trunk/wp-includes/deprecated.php
- Timestamp:
- 05/24/2009 11:47:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r11383 r11450 1673 1673 * @return int The author's ID. 1674 1674 */ 1675 function get_the_author_ID() { 1675 function get_the_author_ID() { 1676 1676 _deprecated_function(__FUNCTION__, '2.8', 'get_the_author_meta(\'ID\')' ); 1677 1677 return get_the_author_meta('ID'); … … 1686 1686 * @uses get_the_author_ID() 1687 1687 */ 1688 function the_author_ID() { 1688 function the_author_ID() { 1689 1689 _deprecated_function(__FUNCTION__, '2.8', 'the_author_meta(\'ID\')' ); 1690 1690 the_author_meta('ID'); 1691 } 1691 } 1692 1692 1693 1693 ?>
Note: See TracChangeset
for help on using the changeset viewer.