WordPress for Developers
Your First Real Plugin: Headers, Structure and Not Using functions.php
Build your first real WordPress plugin with proper headers, structure, naming, activation hooks, and site-specific code that survives theme changes.
Build your first real WordPress plugin with proper headers, structure, naming, activation hooks, and site-specific code that survives theme changes.
There are hundreds of hooks and you need one. Choose by what must already exist when your code runs, not by what the last…
Priority decides order inside one hook, not across hooks. Why 999 is not a fix, what happens on a tie, and how to find…
A filter is asked for a value and an action is not. Why returning something from an action does nothing, why forgetting to return…
The request lifecycle from the front controller to wp_footer, which hook is available at each stage, and why the right code on the wrong…