Changeset 37985 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 07/06/2016 12:39:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r37707 r37985 1355 1355 function get_delete_post_link( $id = 0, $deprecated = '', $force_delete = false ) { 1356 1356 if ( ! empty( $deprecated ) ) 1357 _deprecated_argument( __FUNCTION__, '3.0 ' );1357 _deprecated_argument( __FUNCTION__, '3.0.0' ); 1358 1358 1359 1359 if ( !$post = get_post( $id ) ) … … 1602 1602 // back-compat, $excluded_terms used to be $excluded_terms with IDs separated by " and " 1603 1603 if ( false !== strpos( $excluded_terms, ' and ' ) ) { 1604 _deprecated_argument( __FUNCTION__, '3.3 ', sprintf( __( 'Use commas instead of %s to separate excluded terms.' ), "'and'" ) );1604 _deprecated_argument( __FUNCTION__, '3.3.0', sprintf( __( 'Use commas instead of %s to separate excluded terms.' ), "'and'" ) ); 1605 1605 $excluded_terms = explode( ' and ', $excluded_terms ); 1606 1606 } else {
Note: See TracChangeset
for help on using the changeset viewer.