Intro to WordPress Plugin Development: Separate Into Multiple Files

WordPress Plugin Development File Organization
This entry is part 12 of 12 in the series Intro to WordPress Plugin Development

We’re nearing the end of the Intro to WordPress Plugin Development series. While we’ve gotten into some more advanced topics in the series, I want to circle back to one of the original concepts. In the best practices section of this series, we talked making your plugin readable to others. This helps if anyone ever…

Read More

Intro to WordPress Plugin Development: Object Oriented Programming

WordPress Plugin Development OOP
This entry is part 11 of 12 in the series Intro to WordPress Plugin Development

So far we’ve been working with procedural programming in the Intro to WordPress Plugin Development series. Now we’ll take a look at how we can use object-oriented programming (OOP). This tutorial is not going to go into all of the details behind OOP. Instead, it will go over the concepts and differences between OOP and…

Read More

Intro to WordPress Plugin Development: Sanitize and Validate Data

WordPress Plugin Development Sanitize and Validate Data
This entry is part 10 of 12 in the series Intro to WordPress Plugin Development

Data sanitization and validation are two very important topics to be aware of when building a plugin. Your plugin will be writing, reading, and editing data in the database. Whenever you interact with the database, you open the possibility of bad things happening. What is data validation? Data validation is basically a way to make…

Read More