It’s possible to assign a layout to date archive and set day, month, year or time as condition, but how can I make a looper provider by date range and not by terms or post type. Probably by using the query builder or a query string. Any hint how?
And how to display the title of that archive? Using an addition to the functions.php as it works for category archives (that was kindly provided by your staff some time ago - see below), but does only give the title of the fist post of that specific month.
function display_page_title() {
$page_title = get_the_title(get_option('page_for_posts', true));
return $page_title;
}
add_shortcode('page_title', 'display_page_title');