|
Software Engineering ![]() This website demonstrates using wikis as teaching and learning tool. The course instructor is also happy to share the teaching materials here with those who find it readable. |
Main /
Using WordPress to Build a School WebsiteIntroduction: This lecture is about your Group Project Phase 2. Some demonstrations are conducted during class. The details and the screen shots are not recorded in this wiki page. Notes: The due date for the Group Project Phase Two is 30-Mar-2008. After the due date, each group will have a meeting with me to demonstrate and explan your software prototype. I will select some good works and invite them to deliver a brief presentation to the class on 9-Apr-2008 and 16-Apr-2008. Some initial preparation works
The basics of Web publishing with WordPress
Let's kick off the real workStage One - Static Content Pages at the Begineering
Stage Two - Dynamic Posts by Users about School Functions/Activities/News
Stage Three - Add Functionality to the School Website
Advanced Techniques to Tune Your Work
style.css - Style sheet file
index.php - Home page file (if home.php is present, it will be used instead of index.php)
single.php - single post file (index.php will be used if single.php is not present)
page.php - Single Page file
archive.php - Archive file (index.php will be used if archive.php is not present)
category.php - Category file (archive.php will be used if category.php is not present)
<?php the_content(); ?> - Content of the post
<?php the_title(); ?> - Title of the post
<?php the_author(); ?> - Author of the post
<?php the_time('m-d-y') ?> - The date of the post
Useful Resources |