Concept Flow - WP_Query class
Create WP_Query object with args
WP_Query runs SQL query
Fetch posts matching criteria
Store posts in object property
Use loop: have_posts() and the_post()
Output post data
Reset post data after loop
This flow shows how WP_Query creates a query, fetches posts, and lets you loop through them.