Wordpress as a CMS

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    Notes on slide 1

    Let's talk about WordPress as a CMS What is a CMS? CMS = Content Management System Tools that provide a workflow for publishing collaborative content for multiple users. * Examples: * Drupal: php / MySQL * Joomla: php / MySQL * Xoops: php / MySQL * Plone: python / various DBs WordPress * open source CMS * originally focused on blogging * but has evolved far beyond those humble beginnings

    2 Favorites

    Wordpress as a CMS - Presentation Transcript

    1. WordPress as a CMS Michael J. Hammel http://www.graphics-muse.org [email_address]
    2. Credits Shamefully stolen from Beyond a Blog By Jamie Oastler WordCamp Toronto 2008 Icons from Crystal Clear collection at Wikimedia Commons
    3. Highlights
        The Blue Pill
      • Introduction
      • The Power of the Platform
      • Anatomy of a theme
      • Plugins
        The Red Pill
      • Wordpress-as-CMS
      • What can WordPress do?
      • Where do we go from here?
    4. Power of the Platform
        Downloads
      • 11.1 million by Oct 2008
      • 1.3 million since Dec 2009 (2.7 release)
      • 1100 changes to repository
      • 3000+ registered plugins
    5. Power of the Platform
      • Fast / Easy Installation
      • Hierarchical data structure (categories, pages, etc.)
      • User Roles
      • Content Approval / publishing workflow
      • Content Versioning
      • Customizable presentation layer
      • Comment system
      • Canonical URLs
      • Support for RSS, SSL
        Out of box functionality
    6. Power of the Platform
        Open Source
      • Community Built
      • Community Driven
      • PHP backbone
      • MySQL backend
    7. Power of the Platform
        Modularity
      • Themes
      • Plugins
      • Filters: database or display pipelines
      • Actions: event or code-location based
      • WordpressMU: multiuser version
    8. Power of the Platform “ WordPress was always designed as a simple CMS for people smart enough to not get mired in the things the CMSes usually get mired in.” Matt Mullenweg
    9. Themes
      • Templates
      • “ Template files are the building blocks of your WordPress site. They fit together like the pieces of a puzzle to generate the web pages on your site. Some templates (the header and footer template files for example) are used on all the web pages, while others are used only under specific conditions.” - Stepping into Templates (Codex)
      • Themes Directory - /wp-content/themes
    10. Anatomy of a theme Theme File Usage 404.php Invalid URL requests will be served this page archive.php Display template for posts without category styling category.php Display template for categories requests comments.php Included inside display templates to display comments and allow users to add new comments to a post / page. footer.php Put your analytics code here! functions.php A container for functions called in other themes files header.php <head> </head> and usually top-navigation index.php Primary and possibly only page Start simple, design iteratively http://wpcandy.com/articles/the-WordPress-starter-theme-project.html
    11. Anatomy of a theme The volume and types of files in any theme will be based on the complexity / variety of designs and the skill of the author to implement those styles. Theme File Usage page.php Display template for pages (non-blog) searchform.php <?php include(TEMPLATEPATH.'/searchform.php');?> sidebar.php Navigation or code included in other display templates. Can be managed through admin via widgets - http://automattic.com/code/widgets/themes/ single.php Display template for individual blog posts style.css Primary css stylesheet [Javascript] Sub-folder index.php Primary and possibly only page
    12. Anatomy of a theme
        Make Your Own
      • Less cost / more time
      • More coding / less customization (maybe)
      • Self Sufficient: DIYers
        Acquire / Customize
      • Less time / more cost (potentially)
      • Less coding, more customization
      Starting Points http://www.wordpress.org http://www.wordcamptoronto.com http://vibr8bros.com/Wordpress-project http://weblogtoolscollection.com http://themestation.com Starting Points http://www.wordpress.com/extend/themes http://www.templatemonster.com http://woothemes.com http://www.wPremix.com http://www.revolutoinstheme.com http://www.themeforest.net
    13. Plugins
      • Good / Bad / Ugly: choose with caution
      • Read code / comments
      • Backups!!!
      • Experiment: Dev Server
        • scp plugindir `pwd`
      • Share your experiences!
      http://weblogtoolscollection.com
    14. Plugins
        Manual Install
      • Download, unzip, upload, activate, integrate, test
      • More control of process
      • More secure
        Development Documentation
      • WordPress Help Sheet and Advanced Version
      • WordPress Snippets
      • WordPress Reference
        Automatic Install
      • Requires FTP
      • Use ssh / dev server instead
        Impact
      • Cross browser implications
      • Cross plugin compatibility
    15. Plugins
        Standard Plugins
      • Akismet
      • WordPress.com Stats
      • WP-Print
      • WP Super Edit
      • Google XML Sitemaps
      • Maintenance Mode
      • WordPress Database Backup
      • WP-Cache or WP Super Cache – high volume (Slashdot effect)
      • NextGen Gallery
    16. WordPress as a CMS
      • What does this mean?
      • Go beyond blogs
      • Provide Publishing Workflow
      • Multiple Users
    17. What can WordPress do?
        Basic Content
      • Blogs: http://scobleizer.com/
      • Magazines: http://wphacks.com/best-magazine-style-wordpress-themes/
      • Portals: http://cnnpolitics.com/
      • Tutorials: http://psdtuts.com/
      • Subscription based content
      • AJAX: http://wordpress.org/extend/plugins/ajaxd-wordpress/
      • GPS / Google Maps
      • Auctions / eCommerce: paypal, google checkouts
      • Mailing lists, Contact Managers, CRM
      • Role Management: http://agapetry.net/news/introducing-role-scoper/
      • Events / Calendars
    18. What can WordPress do? Website / App Plugin Social Media Everything Share This Social Traffic Monitor Social Homes Facebook Wordbook Twitter Twitpress SimpleTwitter StumbleUpon Stumble Reviews Stumble Digest Ping.FM WPing.FM Flickr PhotoXhibit OpenID SimpleOpenID Amazon S3 TanTan S3
        External Integration
    19. What can WordPress do?
        Galleries
      • NextGen
      • flShow Manager
      • Post Thumb
      • Custom Fields + LightBox2
    20. What can WordPress do?
        Podcasting
      • PodPress
      • Blubrry Powerpress
      • CaveMonkey50.com
      • Attach mp3 to post!
    21. What can WordPress do?
        Language Support
      • Multiple languages supported (see Codex )
      • Plugins for translating data
        • Gengo
        • Qtranslate
        • Global Translator
    22. WordPress in Use
      • WebAppers – Open Source for Web developers
      • Web Designer Depot
      • Tech Republic
      • ZDNet News
      • Reuters Blogs
      • Anderson Cooper 360
      • Andy Roddick
      • Ford Auto Shows
      • Simms Furniture
      • The Thunderbird – Univ. Journalism Dept. magazine
    23. Summary
        What's Good
      • Start simple
      • Plugins as modular extensions
      • Stock themes to custom themes
        What's Missing
      • Better stock user management
      • Um...that's it!
    24. Where to go from here
      • Share your ideas
      • http://wordpress.org/extend/ideas/
      • Use
      • Develop
      • Contribute
      • WordPress.tv
    25. Where to go from here
        WordCamp Denver 2009
      • Denver Art Museum
      • Saturday, February 28 th
      • 9:30 – 5 (schedule TBD)
      • Registration: http://denver.wordcamp.org/register/
    26. An InteractiveTour
    SlideShare Zeitgeist 2009

    + Michael HammelMichael Hammel Nominate

    custom

    1125 views, 2 favs, 1 embeds more stats

    Presentation given at the Colorado Springs Open Sou more

    More info about this document

    CC Attribution-ShareAlike LicenseCC Attribution-ShareAlike License

    Go to text version

    • Total Views 1125
      • 1110 on SlideShare
      • 15 from embeds
    • Comments 0
    • Favorites 2
    • Downloads 34
    Most viewed embeds
    • 15 views on http://www.graphics-muse.org

    more

    All embeds
    • 15 views on http://www.graphics-muse.org

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories