forked from castlegateit/cgit-wp-acf-events
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-guide.php
More file actions
24 lines (17 loc) · 1.01 KB
/
user-guide.php
File metadata and controls
24 lines (17 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<h3>Events</h3>
<p>Events can be added and edited in the same way as posts or pages. You can view and edit all the events on the site using the “Events” menu on the left side of the admin panel. In addition to the default fields, events have fields for their time, date, and location.<?php
$supports = array();
if (get_option('cgit_wp_events_post_type_support_category')) {
$supports[] = 'categories';
}
if (get_option('cgit_wp_events_post_type_support_tag')) {
$supports[] = 'tags';
}
if ($supports) {
echo ' You can also use ' . implode(' and ', $supports) . ' to organise your events.';
}
?></p>
<figure>
<img src="<?php echo plugin_dir_url(__FILE__); ?>images/fields.png" alt="" />
<figcaption>Events have more fields than posts or pages. The “Where” fields let you add information about the location of the event. The “When” fields let you add information about the time, date, and duration of the event.</figcaption>
</figure>