PHP Building Blocks
Fundamentals
Start with the following PHP Docx and Labs. You will want to do this content in this order:
Most Common
Then go through these common PHP constructs, as they are used throughout WordPress.
Required for WordPress Plugin API
Finally, these are required in order to understand the WordPress Plugin API and Events (such as add_filter
and add_action
):
WordPress Quick Starter Map
After you get through the PHP list above, then you are ready to tackle WordPress. Start with the Plugin API constructs, as these allow you to do your work and extend WordPress.
But first you will want to build the sandbox starter demo plugin, which you will use to build and test code here when doing WordPress.
add_action
add_filter
- WordPress Plugin API – Introduction & Registering Events
- WordPress Plugin API – Loading Plugins
Plugin Developer
You need to take this awesome lab, Let’s Build a Blog Intro Custom Plugin. In this lab, you are building a real-world custom plugin from scratch, while learning about callbacks, code construction, clean code, sanitizing, using views (no HTML in your business logic), database, SQL, and so much more.
Theming Developer
Here are labs for you: