Changeset 33724 for trunk/src/wp-includes/query.php
- Timestamp:
- 08/24/2015 09:21:49 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/query.php
r33722 r33724 1892 1892 } 1893 1893 1894 // If querystring 'cat' is an array, implode it. 1895 if ( is_array( $q['cat'] ) ) { 1896 $q['cat'] = implode( ',', $q['cat'] ); 1897 } 1898 1894 1899 // Category stuff 1895 1900 if ( ! empty( $q['cat'] ) && ! $this->is_singular ) { … … 1965 1970 'include_children' => false 1966 1971 ); 1972 } 1973 1974 // If querystring 'tag' is array, implode it. 1975 if ( is_array( $q['tag'] ) ) { 1976 $q['tag'] = implode( ',', $q['tag'] ); 1967 1977 } 1968 1978
Note: See TracChangeset
for help on using the changeset viewer.