IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 1155 | 1155 | } |
| 1156 | 1156 | |
| 1157 | 1157 | /** |
| 1158 | | * Filter the SQL clauses of an attachment query to include filenames. |
| | 1158 | * Filter the SQL clauses of an attachment query to include filenames and alt tag. |
| 1159 | 1159 | * |
| 1160 | 1160 | * @since 4.7.0 |
| 1161 | 1161 | * @access private |
| … |
… |
|
| 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' AND sq1.meta_key = '_wp_attachment_image_alt' )"; |
| 1175 | 1175 | |
| 1176 | 1176 | $clauses['groupby'] = "{$wpdb->posts}.ID"; |
| 1177 | 1177 | |