WordPress theme example 1

From Wiki @ Karl Jones dot com
Revision as of 12:34, 3 December 2015 by Karl Jones (Talk | contribs) (styles.css)

Jump to: navigation, search

This article is an example of a very simple WordPress theme.

See WordPress custom theme examples for a list of examples.

styles.css

The styles.css file contains:

  • A CSS comment which contains "Theme Name: Unique Name"
  • Your CSS styles
    • Bootstrap styles first
    • Custom styles second
/*
Theme Name: MGDP 2060 Example

After the CSS  comment, paste the Bootstrap CSS styles.

Below the Bootstrap CSS styles, create override styles to customize Bootstrap
*/

header.php

The header.php file looks something like this:


index.php

The index.php file looks something like this:


footer.php

The footer.php file looks something like this:


See also