• 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)
  • Thread Starter jeremib

    (@jeremib)

    I’m trying to determine the most efficient way to load posts in mass, 50 to be exact.

Viewing 1 replies (of 1 total)
  • The topic ‘Performance Questions’ is closed to new replies.