Creating Your First WordPress Plugin

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

    2 Favorites

    Creating Your First WordPress Plugin - Presentation Transcript

    1. Creating Your First WordPress Plugin Colin Loretz
    2. Why?
    3. codex.wordpress.org Know it Breathe it Live it
    4. Anatomy of a Plugin Plugin Folder Name • main php file • js folder • css folder • php folder
    5. Anatomy of a Plugin reno-wordcamp • reno-wordcamp.php • js • css • php
    6. Main PHP File <?php /* Plugin Name: Your Plugin Name Here Plugin URI: Your Plugin URI Version: Current Plugin Version Author: You Description: What does this do? */
    7. reno-wordcamp.php <?php /* Plugin Name: Reno WordCamp Plugin URI: http://renotahoewordcamp.com Version: v1.0 Author: <a href = “http://colinloretz.com”>Colin Loretz</a> Description: A plugin for Reno WordCamp */
    8. Adding an Action function addHeaderCode() { echo ʻHello from the clouds!ʼ; }
    9. Actions & Filters //Actions add_action(ʻwp_headʼ, ʻaddHeaderCodeʼ, 1); ?>
    10. Adding a Filter function addContent($content=ʼʼ) { $content .= ʻ<p>Colin is at WordCamp.</p>ʼ; return $content; }
    11. Actions & Filters //Actions add_action(ʻwp_headʼ, ʻaddHeaderCodeʼ, 1); //Filters add_filter(ʻthe_contentʼ, ʻaddContentʼ); ?>
    12. Adding a Shortcode [renowordcamp]
    13. Adding a Shortcode function renoShortcode($att) { extract(shortcode_atts(array( 'foo' => 'no foo', 'bar' => 'default bar', ), $atts)); return \"foo = {$foo}\"; }
    14. Add the Shortcode //Actions add_action(ʻwp_headʼ, ʻaddHeaderCodeʼ, 1); //Filters add_filter(ʻthe_contentʼ, ʻaddContentʼ); //Shortcodes add_shortcode('renowordcamp', 'renoShortcode');
    15. Going Further Saving & Storing Explore Plugins Learn from others Options Post Metadata Database
    16. Want More? • Wordpress.org (and codex) • WP-Hacker email list (google it) • WordPress Planet
    17. Find Me @colinloretz www.colinloretz.com

    + ColinLoretzColinLoretz, 7 months ago

    custom

    711 views, 2 favs, 1 embeds more stats

    Reno-Tahoe WordCamp 2009 - I went over the basics o more

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 711
      • 696 on SlideShare
      • 15 from embeds
    • Comments 0
    • Favorites 2
    • Downloads 15
    Most viewed embeds
    • 15 views on http://colinloretz.com

    more

    All embeds
    • 15 views on http://colinloretz.com

    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