+ All Categories
Home > Documents > Beginning Wordpress

Beginning Wordpress

Date post: 22-Feb-2016
Category:
Upload: odell
View: 15 times
Download: 0 times
Share this document with a friend
Description:
Beginning Wordpress. It’s more than a blog. It’s a CMS!. PHP & MySQL – What Makes it Tick. Famous 5-Minute Install. wp-config.php. Multiple Users and Roles. Super Admin Administrator Editor Author Contributor Subscriber. Pretty Permalinks. There’s a Plugin for That. E-Commerce - PowerPoint PPT Presentation
20
It’s more than a blog. It’s a CMS! Beginning Wordpress
Transcript
Page 1: Beginning Wordpress

It’s more than a blog. It’s a CMS!

Beginning Wordpress

Page 2: Beginning Wordpress

PHP & MySQL – What Makes it Tick

Page 3: Beginning Wordpress

Famous 5-Minute Install

Page 4: Beginning Wordpress

wp-config.php

Page 5: Beginning Wordpress

Multiple Users and Roles

• Super Admin• Administrator• Editor• Author• Contributor• Subscriber

Page 6: Beginning Wordpress

Pretty Permalinks

Page 7: Beginning Wordpress

There’s a Plugin for That

E-Commerce Image Galleries SEO Adminimize (customize what users see on the

backend) Custom Content Type Manager (customize posts) Anti-spam Contact Forms

Page 8: Beginning Wordpress

Posts

Page 9: Beginning Wordpress

Pages

Page 10: Beginning Wordpress

Media Library

Page 11: Beginning Wordpress

Menus

Page 12: Beginning Wordpress

Widgets

Page 13: Beginning Wordpress

Comments

Page 14: Beginning Wordpress

Upload ThemesWordpress 2012 Theme

Wordpress 2013 Theme

Page 15: Beginning Wordpress

Inside the Theme• More than just a way to skin your site.

• Uses the “loop” to display posts.• Queries your posts and pages. Configurable.

• Use of customizable template files.• Think of PHP includes, but more flexible.

• The Only Required Files for Themes• functions.php• style.css• index.php

Page 16: Beginning Wordpress

functions.phpPlugins – applied across all themes.functions.php – local to theme.• Actions

• Functions triggered thru-out the WP Core. • e the Observer Pattern.• E.g. wp_footer, wp_header.

• Filters • manipulate data output by actions.

• Action Hooks • E.g. Add css / javascript to header.

• Filter Hooks • E.g. Modify the length of post content.

Page 17: Beginning Wordpress

style.css Used in combination with template tags to achieve look of

site. WP generated classes plus theme specific classes

o E.g. <body class=“home page logged-in..

Page 18: Beginning Wordpress

Use Child Themes Making changes to existing themes not recommended.

o You will lose your changes. Child themes extend functionality of an existing theme (parent

theme). Extend style.css. Extend functions.php.

Wordpress 2013 Theme

My Child Theme

Page 19: Beginning Wordpress

Multisite Wordpress 1 Wordpress Installation – many sites.

Sub-Domains OR sub-directories.

Virtual – Do not have directory on your server.

Do have separate directories for media uploads.

Do have separate tables in the database.

Can also share plugins and themes.

Page 20: Beginning Wordpress

Troubleshooting

Wordpress Codex http://codex.wordpress.org/

Community http://wordpress.org/support/


Recommended