I suspect this may not be possible, but I am looking for a way to reverse the order in which posts lay out chronologically (from oldest to newest), but only when viewed by tag.
So to be clear I want posts to show from newest to oldest when viewed on the main page and via category:
http://maternitygallery.com/
or
http://maternitygallery.com/belly/2nd_trimester/20_weeks/
But I would like to show them in reverse order, from oldest to newest, when viewed by tag:
http://maternitygallery.com/tag/ruthie-hart/
Can this be accomplished?
Open functions.php and inside the function pinboard_filter_query() add the following condition:
if( $query->is_home() )
$query->set( 'order', 'ASC' );