Difference between revisions of "Week Eight (MGDP2060)"
Karl Jones (Talk | contribs) (→Update: WordPress Page Templates) |
Karl Jones (Talk | contribs) |
||
Line 2: | Line 2: | ||
'''No Class October 20''' - next class '''October 27'''. | '''No Class October 20''' - next class '''October 27'''. | ||
+ | |||
+ | Previous: [[Week Seven (MGDP2060)]] - Next: [[Week Nine (MGDP2060)]] | ||
+ | |||
== Showing Hidden Files and Folder == | == Showing Hidden Files and Folder == |
Latest revision as of 11:20, 8 December 2016
This article lists topics for Week Eight of Web Design and Development III (MGDP2060).
No Class October 20 - next class October 27.
Previous: Week Seven (MGDP2060) - Next: Week Nine (MGDP2060)
Contents
Showing Hidden Files and Folder
Hidden files and folders are typically hidden:
- Not displayed in Finder, on Macintosh computers
- Not displayed in File Manager, on Windows computers
The .htaccess file is typically a hidden file.
You can tell your computer to display hidden files and folders:
WordPress Templates
A WordPress Template is a PHP document which controls how WordPress content is displayed.
Template hierarchy
All themes must include the Template file named index.php
.
Additional WordPress Templates form a hierarchy, overriding index.php
for specific types of information.
See WordPress Template hierarchy.
Most WordPress Themes include Templates named header.php
and footer.php
, which are included in all of the other Template files.
See WordPress Template.
The Loop
The Loop is PHP code used within a Template to display Posts.
See WordPress Loop.
Template Tags
Template Tags are units of PHP code used within Templates to display various types of information.