Is wordpress written in MVC pattern?

Is WordPress written in MVC architect?

How to understand a CMS is a MVC?

Read More

A CMS that written in MVC must have directories with named “Model”, “Controller”, “View”?

Sorry for my beginner question .

Related posts

2 comments

  1. WordPress dosen’t follow MVC (Model-View-Controller) nor is written with OOP approach in mind. Anyway you can write your plugins with a MVC pattern or using OOP. One excelent tool to use MVC in WordPress is WP MVC

  2. No, WordPress is not MVC Architecture.

    An application that is written in MVC, most of the time recognise by their directory structure:

    • Models
    • Controllers
    • Views
    • Application (Optional)

Comments are closed.