Changeset 11774 for trunk/wp-admin/import/wordpress.php
- Timestamp:
- 08/04/2009 09:46:42 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/import/wordpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/wordpress.php
r11321 r11774 379 379 $post_type = $this->get_tag( $post, 'wp:post_type' ); 380 380 $post_password = $this->get_tag( $post, 'wp:post_password' ); 381 $is_sticky = $this->get_tag( $post, 'wp:is_sticky' ); 381 382 $guid = $this->get_tag( $post, 'guid' ); 382 383 $post_author = $this->get_tag( $post, 'dc:creator' ); … … 449 450 printf(__('Importing post <em>%s</em>...'), stripslashes($post_title)); 450 451 $comment_post_ID = $post_id = wp_insert_post($postdata); 452 if ( $post_id && $is_sticky == 1 ) 453 stick_post( $post_id ); 454 451 455 } 452 456
Note: See TracChangeset
for help on using the changeset viewer.