Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
How would I go about doing this? is there already a macro in there to do this?
Thanks, Pete
There are a couple ways.
You could create a new template and assign it to the month folder. Then in a macroscript all you need is to iterate over Model.Children.
Or you can copy and modify the main listing macroscript. Read a "month" querystring param and filter by
posts.Where(x => new Date(x.GetPropertyValue("uBlogsyPostDate")).Month == int.Parse(Request["month"]))
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Display posts by month in uBlogsy
How would I go about doing this? is there already a macro in there to do this?
Thanks, Pete
There are a couple ways.
You could create a new template and assign it to the month folder. Then in a macroscript all you need is to iterate over Model.Children.
Or you can copy and modify the main listing macroscript. Read a "month" querystring param and filter by
posts.Where(x => new Date(x.GetPropertyValue("uBlogsyPostDate")).Month == int.Parse(Request["month"]))
is working on a reply...