Changeset 6130

Show
Ignore:
Timestamp:
09/18/07 18:01:47 (1 year ago)
Author:
ryan
Message:

Fake being in the loop during export so that template tags work.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/export.php

    r6077 r6130  
    189189    <?php do_action('rss2_head'); ?> 
    190190    <?php if ($post_ids) { 
     191        global $wp_query; 
     192        $wp_query->in_the_loop = true;  // Fake being in the loop. 
    191193        // fetch 20 posts at a time rather than loading the entire table into memory 
    192194        while ( $next_posts = array_splice($post_ids, 0, 20) ) {