I have a custom post type with its own date field. the date is setup for unix YYYY/mm/dd
I need to create a simple month calendar that shows days that have a cpt on them. get_calendar works for posts but not a CPT.
I have a custom post type with its own date field. the date is setup for unix YYYY/mm/dd
I need to create a simple month calendar that shows days that have a cpt on them. get_calendar works for posts but not a CPT.
You must be logged in to post a comment.
Disclaimer: I have not tested this out myself.
It looks like you will have to hook the calendar and push your content into it. The filter that gets called by the calendar is
get_calendar
.So, at a guess, something like this:
I hope that helps.