35
Google Marketing Bootcamp Wordpress 101

Wordpress 101 Training

Embed Size (px)

DESCRIPTION

Our introduction to Wordpress CMS use including themes, plugins, interface use.

Citation preview

Page 1: Wordpress 101 Training

Google Marketing Bootcamp

Wordpress 101

Page 2: Wordpress 101 Training

2/8/2010 2

Why Choose Wordpress

• A long time in refining

• Active in development

• Large community of contributors

• Amazingly extendable

• Detailed Feature list

Page 3: Wordpress 101 Training

Google Marketing Bootcamp

Basic WordpressConcepts

Page 4: Wordpress 101 Training

2/8/2010 4

Common Terms

• Posts

• Pages

• Categories / Tags

• Comments

• Permalinks

• RSS

Page 5: Wordpress 101 Training

2/8/2010 5

Common Terms (2)

• Plugins

• Themes

• XHTML

• CSS

• PHP

Page 6: Wordpress 101 Training

Google Marketing Bootcamp

Hosted vs Self-Hosted

Page 7: Wordpress 101 Training

2/8/2010 7

Getting started with Wordpress.com

Page 8: Wordpress 101 Training

2/8/2010 8

Installing Wordpress manually

• Preparing the environment

• Downloading Wordpress

• Uploading the files

• Creating database

• Installing Wordpress

Page 9: Wordpress 101 Training

Google Marketing Bootcamp

The WP Admin Panel

Page 10: Wordpress 101 Training

2/8/2010 10

Dashboard

Page 11: Wordpress 101 Training

2/8/2010 11

Content Panels

Page 12: Wordpress 101 Training

2/8/2010 12

Settings Panels

Page 13: Wordpress 101 Training

2/8/2010 13

Customization Panels

Page 14: Wordpress 101 Training

Google Marketing Bootcamp

Adding Content

Page 15: Wordpress 101 Training

2/8/2010 15

New Post

Page 16: Wordpress 101 Training

2/8/2010 16

Basic Post Options

• Categories & Tags

• Adding an image to the post

• Using Visual editor vs HTML editor

• Drafts, timestamps and managing posts

Page 17: Wordpress 101 Training

2/8/2010 17

Advanced post options

• Excerpt

• Trackbacks

• Discussion

• Custom Field

• Password and private protection

• Post slug

Page 18: Wordpress 101 Training

2/8/2010 18

New Page / Post

Page 19: Wordpress 101 Training

Google Marketing Bootcamp

Managing Comments

Page 20: Wordpress 101 Training

2/8/2010 20

Edit Comments Tab

Page 21: Wordpress 101 Training

2/8/2010 21

Comments Options

• Approve

• Unapprove

• Spam

• Delete

• Edit

• Reply

Page 22: Wordpress 101 Training

Google Marketing Bootcamp

Extending with Plugins

Page 23: Wordpress 101 Training

2/8/2010 23

Manage Plugins Screen

Page 24: Wordpress 101 Training

2/8/2010 24

Plugin Options

• What are plugins?

• What are widgets

• Most popular plugins

• Enable / Disable plugins

• Uninstall plugins

Page 25: Wordpress 101 Training

2/8/2010 25

Search / Add New Plugins

Page 26: Wordpress 101 Training

2/8/2010 26

Common Plugins

• SEO plugins

• Contact Forms

• Feedburner / Twitter Integration

• Google Analytics / XML Sitemap

• Lightbox / Slimbox

• Anti-spam

• Super Cache

Page 27: Wordpress 101 Training

Google Marketing Bootcamp

Extending with Themes

Page 28: Wordpress 101 Training

2/8/2010 28

Does a Wordpress Site Have to Be a Blog?

Page 29: Wordpress 101 Training

2/8/2010 29

Searching for New Themes

Page 30: Wordpress 101 Training

Google Marketing Bootcamp

Making Your Own Wordpress Theme

Page 31: Wordpress 101 Training

2/8/2010 31

The Two Essential Files in a Theme

Template from pulling out

content from the database

(posts, pages etc) and

displaying it

Style sheet for customizing

the appearance of the

content.

Page 32: Wordpress 101 Training

2/8/2010 32

The Other Important Files

Page 33: Wordpress 101 Training

2/8/2010 33

The Wordpress Theme Hierarchy

Page 34: Wordpress 101 Training

2/8/2010 34

The Loop (Displays Content)

• <?php

• get_header();

• if (have_posts()) :

– while (have_posts()) :

• the_post();

• the_content();

– endwhile;

• endif;

• get_sidebar();

• get_footer();

• ?>

Page 35: Wordpress 101 Training

2/8/2010 35

Reference Resources

• The Theme Development Codex

– http://codex.wordpress.org/Theme_Development