IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 1148 | 1148 | |
| 1149 | 1149 | // Filter query clauses to include filenames. |
| 1150 | 1150 | if ( isset( $q['s'] ) ) { |
| 1151 | | add_filter( 'posts_clauses', '_filter_query_attachment_filenames' ); |
| | 1151 | add_filter( 'posts_clauses', '_filter_query_attachment_meta' ); |
| 1152 | 1152 | } |
| 1153 | 1153 | |
| 1154 | 1154 | return $q; |
| … |
… |
|
| 1171 | 1171 | remove_filter( 'posts_clauses', __FUNCTION__ ); |
| 1172 | 1172 | |
| 1173 | 1173 | // Add a LEFT JOIN of the postmeta table so we don't trample existing JOINs. |
| 1174 | | $clauses['join'] .= " LEFT JOIN {$wpdb->postmeta} AS sq1 ON ( {$wpdb->posts}.ID = sq1.post_id AND sq1.meta_key = '_wp_attached_file' )"; |
| | 1174 | $clauses['join'] .= " LEFT JOIN {$wpdb->postmeta} AS sq1 ON ( {$wpdb->posts}.ID = sq1.post_id AND ( sq1.meta_key = '_wp_attached_file' OR sq1.meta_key = '_wp_attachment_image_alt' ) )"; |
| 1175 | 1175 | |
| 1176 | 1176 | $clauses['groupby'] = "{$wpdb->posts}.ID"; |
| 1177 | 1177 | |