Display Day names with wp_get_archives instead of date
There are no arguments you can pass to do this, and no obvious filters. However, if you dig through the source you will see: 1426 if ( ! $archive_date_format_over_ride ) { 1427 $archive_day_date_format = get_option( ‘date_format’ ); 1428 $archive_week_start_date_format = get_option( ‘date_format’ ); 1429 $archive_week_end_date_format = get_option( ‘date_format’ ); 1430 } That value is used … Read more