Comfortable with server side includes (ssi) and php include calls
To display a WIU Webcalendar feed, you will need a webcalendar account for your department. Using the WIU Webcalendar allows departments to integrate their events in a master University calendar while also displaying the department-specific events on their own web sites.

The display will need to end in the file extension .php or .sphp (rather than .html or .shtml)
Insert the following code where you want the information to display:
<?php require_once('http://www.wiu.edu/users/webcal/webcal.quickevents.sphp?id=calendarID'); ?>
Example:
<?php require_once('http://www.wiu.edu/users/webcal/webcal.quickevents.sphp?id=43'); ?>
Limiting the Number of Items Displayed
By default, 10 events are displayed. To control the number of items displaying, add &limit=number behind the calendar id number. See the example to see how the code is implemented:
<?php require_once('http://www.wiu.edu/users/webcal/webcal.quickevents.sphp?id=43&limit=4'); ?>
CSS & Events Feed
The entire feed is surrounded by a CSS id name "calendarHome". You can manipulate the display options within this ID class to control the layout on your web page. For example, the feed includes the title "Events" and I commonly hide it using the following code:
#calendarHome h3 {
display: none;
}