Difference between revisions of "Week Seven (MGDP2060)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(WordPress theme development)
(WordPress theme development)
Line 17: Line 17:
 
* [https://codex.wordpress.org/Theme_Development Theme development]
 
* [https://codex.wordpress.org/Theme_Development Theme development]
 
* [https://developer.wordpress.org/ Developer Resources]
 
* [https://developer.wordpress.org/ Developer Resources]
 +
* [https://codex.wordpress.org/Site_Design_and_Layout Site Design and Layout]
 +
* [https://yoast.com/wordpress-theme-anatomy/ Anatomy of a WordPress theme]
 
* [https://make.wordpress.org/core/handbook/best-practices/coding-standards/ WordPress Coding Standards]
 
* [https://make.wordpress.org/core/handbook/best-practices/coding-standards/ WordPress Coding Standards]
 +
* [https://make.wordpress.org/core/handbook/best-practices/coding-standards/css/ CSS Coding Standards]
  
 
== Templates ==
 
== Templates ==

Revision as of 13:57, 8 October 2015

This article lists topics for week seven of Web Design and Development III (MGDP2060).

October 15 - No classes! (Education MN Days)

In the News

See also HTTP cookie.

WordPress theme development

Theme development refers to the creation of custom Wordpress themes.

Templates

The Loop

"The Loop" is a concept in WordPress.

Use the Loop to display multiple data records. For example, if your Home page displays the most recent blog posts, the Loop "loops through" each data record in turn.

Whatever HTML and PHP appears inside the Loop will be processed multiple times: one time for each item processed by the Loop/

Category templates

Exercises

Reading for next week

  • Adding new types of posts (510)
  • Creating custom category pages (519)

See also