IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
123 | 123 | } |
124 | 124 | } |
125 | 125 | |
| 126 | $join = apply_filters('export_filter_join', $join, $args); |
| 127 | |
126 | 128 | if ( 'post' == $args['content'] || 'page' == $args['content'] || 'attachment' == $args['content'] ) { |
127 | 129 | if ( $args['author'] ) { |
128 | 130 | $where .= $wpdb->prepare( " AND {$wpdb->posts}.post_author = %d", $args['author'] ); |
… |
… |
|
137 | 139 | } |
138 | 140 | } |
139 | 141 | |
| 142 | $where = apply_filters('export_filter_where', $where, $args); |
| 143 | |
140 | 144 | // Grab a snapshot of post IDs, just in case it changes during the export. |
141 | 145 | $post_ids = $wpdb->get_col( "SELECT ID FROM {$wpdb->posts} $join WHERE $where" ); |
142 | 146 | |