Changeset 35264 for trunk/src/wp-includes/category-functions.php
- Timestamp:
- 10/18/2015 03:34:55 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/category-functions.php
r34997 r35264 40 40 // Back compat 41 41 if ( isset($args['type']) && 'link' == $args['type'] ) { 42 _deprecated_argument( __FUNCTION__, '3.0', '' ); 42 /* translators: 1: "type => link", 2: "taxonomy => link_category" alternative */ 43 _deprecated_argument( __FUNCTION__, '3.0', 44 sprintf( __( '%1$s is deprecated. Use %2$s instead.' ), 45 '<code>type => link</code>', 46 '<code>taxonomy => link_category</code>' 47 ) 48 ); 43 49 $taxonomy = $args['taxonomy'] = 'link_category'; 44 50 }
Note: See TracChangeset
for help on using the changeset viewer.