Wordpress theme from scratch

Preview:

DESCRIPTION

 

Citation preview

WORDPRESS THEMEFROM SCRATCH

Name: Vo Minh ManWebsite: http://minhman.comFacebook: Check my websiteEmail: hello@minhman.comWork: www.izwebz.comFree screencast tutorial abouthtml, css, jquery, php, mysql, wordpress….

1

2

3

4

+

+

+

5

CENSORED

6

STEP BY STEP

WORDPRESS THEME

7 hello@minhman.com

Template Core Files

index.php style.css screenshot.png

Size: 880 × 660 pxtake screenshot of website

Define website informationsname, author, license, tags….

Show whatever you want !!!with html/css and template tags

hello@minhman.com8

DEMO(index.php / style.css / screenshot.png)

9 hello@minhman.com

index.php

header.php(fixed content)

Main content(dynamic content)

sidebar.php(fixed content)

footer.php(fixed content)

Fixed content:Will NOT change in every pages

Dynamic content:Will change in every pages

10

header.php(fixed content)

<?php get_header(); ?>

footer.php(fixed content)

<?php get_footer(); ?>

sidebar.php(fixed content)

<?php get_sidebar(); ?>

11

Main content(dynamic content)

the loopThe Loop is PHP code used by WordPress to display posts. Using The Loop, WordPress processes each post to be displayed on the current page, and formats it according to how it matches specified criteria within The Loop tags. Any HTML or PHP code in the Loop will be processed on each post.Read: http://codex.wordpress.org/The_Loop

12

THREE SIMPLE WAYS TO USE

THE LOOP

13

Loop basics

The loop

template tags

14

Loop with query

The loop

template tags

15

Loop with confirm query (Recommend this)

The loop

template tags

16

Template File Hierarchy

link to page.phpshow your page detail

link to category.phpshow all post in ‘news’ category

link to single.phpshow your post detail17

Post vs Page

Post Page

Posts are content entries listed in reverse chronological order on your blog’s home page.

Pages are meant to be static “one-off” type content such as your about, contact, privacy policy, legal disclaimers, etc.

Posts are timely Pages are timeless

Posts can be categorized Pages are hierarchical

Posts are included in RSS feed Pages are not

Posts do not Pages have custom template

18

DEMOsingle.php // page.php // category.php // sidebar.php

19

Sample data: http://themetrust.com/knowledgebase/how-to-import-the-demo-contentThe loop: http://codex.wordpress.org/The_LoopQuery parameters: http://codex.wordpress.org/Class_Reference/WP_Query#ParametersTemplate hierarchy: http://codex.wordpress.org/Template_HierarchyTemplate tags: http://codex.wordpress.org/Template_TagsSidebar Generator: http://generatewp.com/sidebar/WP-PageNavi The Right Way To Use:- query_posts() http://scribu.net/wordpress/wp-pagenavi/right-way-to-use-query_posts.html- WP_Query() http://scribu.net/wordpress/wp-pagenavi/wpn-2-74.htmlRage Comic: http://ragemaker.net

Resources

20

21