1 / 20

Beginning Wordpress

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

odell
Download Presentation

Beginning Wordpress

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Beginning Wordpress It’s more than a blog. It’s a CMS!

  2. PHP & MySQL – What Makes it Tick

  3. Famous 5-Minute Install

  4. wp-config.php

  5. Multiple Users and Roles • Super Admin • Administrator • Editor • Author • Contributor • Subscriber

  6. Pretty Permalinks

  7. 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

  8. Posts

  9. Pages

  10. Media Library

  11. Menus

  12. Widgets

  13. Comments

  14. Upload Themes Wordpress 2012 Theme Wordpress 2013 Theme

  15. 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

  16. functions.php Plugins – 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.

  17. style.css • Used in combination with template tags to achieve look of site. • WP generated classes plus theme specific classes • E.g. <body class=“home page logged-in..

  18. Use Child Themes • Making changes to existing themes not recommended. • 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

  19. 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.

  20. Troubleshooting • Wordpress Codex • http://codex.wordpress.org/ • Community • http://wordpress.org/support/

More Related