Changeset 45926 for trunk/src/wp-includes/link-template.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r45781 r45926 1712 1712 // Back-compat, $excluded_terms used to be $excluded_categories with IDs separated by " and ". 1713 1713 if ( false !== strpos( $excluded_terms, ' and ' ) ) { 1714 _deprecated_argument( __FUNCTION__, '3.3.0', sprintf( __( 'Use commas instead of %s to separate excluded terms.' ), "'and'" ) ); 1714 _deprecated_argument( 1715 __FUNCTION__, 1716 '3.3.0', 1717 sprintf( 1718 /* translators: %s: the word 'and' */ 1719 __( 'Use commas instead of %s to separate excluded terms.' ), 1720 "'and'" 1721 ) 1722 ); 1715 1723 $excluded_terms = explode( ' and ', $excluded_terms ); 1716 1724 } else {
Note: See TracChangeset
for help on using the changeset viewer.