Changeset 11774 for trunk/wp-admin/includes/export.php
- Timestamp:
- 08/04/2009 09:46:42 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/export.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/export.php
r11380 r11774 269 269 if ( 'revision' == $post->post_type ) 270 270 continue; 271 setup_postdata($post); ?> 271 setup_postdata($post); 272 273 $is_sticky = 0; 274 if ( is_sticky( $post->ID ) ) 275 $is_sticky = 1; 276 277 ?> 272 278 <item> 273 279 <title><?php echo apply_filters('the_title_rss', $post->post_title); ?></title> … … 292 298 <wp:post_type><?php echo $post->post_type; ?></wp:post_type> 293 299 <wp:post_password><?php echo $post->post_password; ?></wp:post_password> 300 <wp:is_sticky><?php echo $is_sticky; ?></wp:is_sticky> 294 301 <?php 295 302 if ($post->post_type == 'attachment') { ?>
Note: See TracChangeset
for help on using the changeset viewer.