Performance Questions
-
In my index.php I have:
query_posts('cat=32&showposts=15'); while (have_posts()) : the_post(); .... the_content('Read More'); .... endwhile;
When I call the_content, the_title, etc, does it hit the database to get that one field? Or does it hit the database once for every post in the_post, or does it get the query results all at once in query_posts?
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Performance Questions’ is closed to new replies.