How to add the event description to event category page

Responsive WordPress theme suitable for Schools, Colleges or educational websites.
GK User
Fri Nov 07, 2014 6:17 pm
What I would like to do is add the event description under the "When:" line but before the "Read More . . ."

Image

I have found that the information for "When:" is located in content-event.php, how can I also pull the "gavern-post-desc" or equivalent from the events page and display in a new line under "When:"?
User avatar
Fresh Boarder

GK User
Sat Nov 08, 2014 8:33 am
Hi,

Add to your event some custom field, like event-description and then in your content.event.php, after
Code: Select all
</header>

add the following code to display event-description field value:
Code: Select all
<p><?php echo get_post_meta( $post->ID, 'event-description', true ); ?></p>
User avatar
Moderator

GK User
Sat Nov 08, 2014 11:48 pm
Yes, perfect! Got this to work! Thanks!
User avatar
Fresh Boarder


cron