Ticket #17023: media-upload-month-year_filter_3.2.patch
| File media-upload-month-year_filter_3.2.patch, 692 bytes (added by kevinB, 2 years ago) |
|---|
-
wp-admin/includes/media.php
1985 1985 <div class="alignleft actions"> 1986 1986 <?php 1987 1987 1988 $arc_query = "SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = 'attachment' ORDER BY post_date DESC";1988 $arc_query = apply_filters( 'media_upload_year_month_query', "SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = 'attachment' ORDER BY post_date DESC" ); 1989 1989 1990 1990 $arc_result = $wpdb->get_results( $arc_query );
