Why do themes rely on “The Loop”?

You are thinking of WordPress templates as PHP application code. Essentially they are not that.

WordPress templates by design are templates using Template Tags API. It is extra level of abstraction, that just happens to allow to use rest of PHP language too.

The ease of template tags serves the popularity of WordPress and extremely low entry bar for people to tweak themes. Believe me, there are plenty of people around who use/tweak loops without much understanding of what they actually are, in extreme cases, what arrays even are.

Leave a Comment