I want to use the weblog tag to display the most recent weeks content:
display_by="week" limit="1"but limit that weeks content to a limited number of entries, such as just one entry while there may be multiple entries for that day or week.
==
So in other words, I want to display the most recent entry from the past week in one spot, the second most recent week’s entry in another spot (different part of the page),the third entry from the week in yet another spot, and so on. The problem I have at the moment is that the data output from each entry is being dropped in a checkered board fashion on a page (think tables with rows and cells) with non repeating content between the entries - so that I just can’t use one weblog tag (I think) to output the whole thing cleanly.
I was thinking of using the offset tag of one to show the second entry data, then offset of two to show the third entry data and so on and reusing the weblog tag in the different spots. The issue is then if I’m using the display_by=“week” to limit content to the past week then the offset applies to the display_by_week tag and not to the entries themselves so I can’t apply a limit to the number of entries AND limit the content to the past week.