Book Image

WordPress Web Application Development

By : Rakhitha Nimesh Ratnayake
Book Image

WordPress Web Application Development

By: Rakhitha Nimesh Ratnayake

Overview of this book

Table of Contents (19 chapters)
WordPress Web Application Development Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Chapter 4. Building Blocks of Web Applications

The majority of WordPress-powered systems are either simple websites or blogs. Adapting WordPress for building complex web applications can be a complex task for beginner developers, who are used to working with simple websites every day. Understanding the process of handling web application-specific functions becomes vital in such scenarios.

Managing data is one of the most important tasks in web applications. WordPress offers a concept called custom post types for modeling application data and backend interfaces. I believe this is the foundation of most web applications, and hence, named this chapter as Building Blocks of Web Applications.

While exploring the advanced use cases of custom post type implementations, we will get used to popular web development techniques such as modularizing, template management, data validations, and rapid application development in a practical process.

In this chapter, we will cover the following topics:

  • Introduction...