Changes in trunk/wp-includes/deprecated.php [17084:18254]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r17084 r18254 1324 1324 * @since 1.5 1325 1325 * @deprecated 2.8 1326 * @deprecated Use the_author_meta('description')1326 * @deprecated Use get_the_author_meta('description') 1327 1327 * @see get_the_author_meta() 1328 1328 * … … 1352 1352 * @since 1.5 1353 1353 * @deprecated 2.8 1354 * @deprecated Use the_author_meta('login')1354 * @deprecated Use get_the_author_meta('login') 1355 1355 * @see get_the_author_meta() 1356 1356 * … … 1380 1380 * @since 1.5 1381 1381 * @deprecated 2.8 1382 * @deprecated Use the_author_meta('first_name')1382 * @deprecated Use get_the_author_meta('first_name') 1383 1383 * @see get_the_author_meta() 1384 1384 * … … 2603 2603 } 2604 2604 2605 /** 2606 * Check for PHP timezone support 2607 * 2608 * @since 2.9.0 2609 * @deprecated 3.2 2610 * 2611 * @return bool 2612 */ 2613 function wp_timezone_supported() { 2614 _deprecated_function( __FUNCTION__, '3.2' ); 2615 2616 return true; 2617 }
Note: See TracChangeset
for help on using the changeset viewer.