Changeset 12584 for trunk/wp-includes/post-template.php
- Timestamp:
- 12/30/2009 04:23:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r12550 r12584 247 247 * @return string 248 248 */ 249 function get_the_excerpt( $deprecated = '') {249 function get_the_excerpt( $deprecated = '' ) { 250 250 if ( !empty( $deprecated ) ) 251 _deprecated_argument( __FUNCTION__, 'deprecated', '2.3');251 _deprecated_argument( __FUNCTION__, '2.3' ); 252 252 253 253 global $post; … … 902 902 * @param bool $permalink Optional, default is false. Whether to include permalink. 903 903 */ 904 function the_attachment_link($id = 0, $fullsize = false, $deprecated = false, $permalink = false) { 904 function the_attachment_link( $id = 0, $fullsize = false, $deprecated = false, $permalink = false ) { 905 if ( !empty( $deprecated ) ) 906 _deprecated_argument( __FUNCTION__, '0.0' ); 907 905 908 if ( $fullsize ) 906 909 echo wp_get_attachment_link($id, 'full', $permalink);
Note: See TracChangeset
for help on using the changeset viewer.