-
-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event system #44
Comments
Sorry for late response, have another project out there 😄 Currently no, for databaseless platform seems too much isn't it? |
I would like to see a event calendar as well. My clients don't like having to use a separate system(google calendar) for creating events and I don't have any alternative solutions. |
@Xarcell so you want to display let say specific tags? there is a built in function for that, yes undocumented yet. I will open the Wiki and make any body can edit it so other user can add any tips. Let say you want to display the "event" tag, just use the get_tag() function: function get_tag($tag, $page, $perpage, $random) Example: $events = get_tag('event', 1, 5, false);
foreach ($events as $e) {
echo '<div>' . $e->title . '</div>';
} Or get the category event: function get_category($category, $page, $perpage) Example: $events = get_category('event', 1, 5);
foreach ($events as $e) {
echo '<div>' . $e->title . '</div>';
} |
Thank you for this. |
Do you have it in plans? Calendar, agenda view, anounce...
The text was updated successfully, but these errors were encountered: