The Atlanta WordPress Coder's Guild
- Presenters: @mikeschinkel / @wpscholar
- Twitter: @thecodersguild
- Hashtag: #wppluginsandhooks
##Outline 0. Intro - What is a Plugin? - What is a Hook? - Compare Plugins vs. Themes vs. Core
- Minimum Viable Plugin
- The Plugin Directory
- echo
<font color="red" size="7">Hello World!</font>
- Activation
- Simple Plugin
- Using
'the_content'
hook - Print Copyright Notice on every post
- Using
- The Must-Use Plugin Directory
- The
plugin-loader.php
- The
- Using Classes for Plugins
- The
EventPress_Redux
class
- The
- Add Post Types
- Event
- Venue
- Registration
- Data Entry Fields
- Start, End, Venue
- Use
edit_form_after_title
hook- Instead of a Metabox - we'll show the hooks for that too
- Enqueue Scripts and CSS
- Enqueue
select2.js
,select2.css
for Venue - Add in Footer
- Enqueue
- Register for an Event
- Using WP-AJAX and
- Registration post type.
##Repository
- The Plugin Repository on GitHub
##References