This document discusses how to create extensible WordPress plugins using hooks. It begins with background on the speaker and why WordPress is a good platform. It then explains that plugins should be made extensible so others can extend functionality without modifying code. The key aspects are using WordPress actions and filters to define hook points for others to attach to. Filters are for modifying data while actions trigger events. Examples are given of extending plugins by overwriting classes. Tips include planning hooks carefully and adding documentation. Finally, examples of extensible plugins and resources for further reading are provided.