Difference between revisions of "Week Eight (MGDP2060)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
 
(30 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This article lists topics for week eight of [[Web Design and Development III (MGDP2060)]].
+
This article lists topics for '''Week Eight''' of [[Web Design and Development III (MGDP2060)]].
  
== Topics ==
+
'''No Class October 20''' - next class '''October 27'''.
  
* [[Ajax (protgramm
+
Previous: [[Week Seven (MGDP2060)]] - Next: [[Week Nine (MGDP2060)]]
  
== See also ==
 
  
* [[Web Design and Development III (MGDP2060)]]
+
== 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:
 +
 
 +
* [http://www.macworld.co.uk/how-to/mac-software/how-show-hidden-files-in-mac-os-x-finder-funter-3520878/ How to show hidden files and folders in Mac OS X Finder]
 +
* [https://support.microsoft.com/en-us/help/14201/windows-show-hidden-files Show Hidden Files (in Windows)]
 +
 
 +
== 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 <code>index.php</code>.
 +
 
 +
Additional WordPress Templates form a hierarchy, overriding <code>index.php</code> for specific types of information.
 +
 
 +
See [[WordPress Template hierarchy]].
 +
 
 +
== Header and Footer Templates ==
 +
 
 +
Most WordPress Themes include Templates named <code>header.php</code> and <code>footer.php</code>, which are included in all of the other Template files.
 +
 
 +
See [[WordPress Template]].
 +
 
 +
== The Loop ==
 +
 
 +
The [[WordPress Loop|Loop]] is [[PHP]] code used within a [[WordPress Template|Template]] to display [[WordPress|Posts]].
 +
 
 +
See [[WordPress Loop]].
 +
 
 +
== Template Tags ==
 +
 
 +
[[WordPress Template Tag|Template Tags]] are units of [[PHP]] code used within [[WordPress Template|Templates]] to display various types of information.
 +
 
 +
See [[WordPress Template Tag]].
 +
 
 +
== Exercises ==
 +
 
 +
See [[Week Eight Exercises (MGDP2060)]].
 +
 
 +
 
 +
[[Category:Web Design and Development III (MGDP2060)]]

Latest revision as of 12: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)


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.

Header and Footer Templates

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.

See WordPress Template Tag.

Exercises

See Week Eight Exercises (MGDP2060).