mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Don't put revisions in the export
git-svn-id: http://svn.automattic.com/wordpress/trunk@9104 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
637cca38da
commit
ac5bbe268f
@ -264,6 +264,9 @@ echo '<?xml version="1.0" encoding="' . get_bloginfo('charset') . '"?' . ">\n";
|
|||||||
$where = "WHERE ID IN (".join(',', $next_posts).")";
|
$where = "WHERE ID IN (".join(',', $next_posts).")";
|
||||||
$posts = $wpdb->get_results("SELECT * FROM $wpdb->posts $where ORDER BY post_date_gmt ASC");
|
$posts = $wpdb->get_results("SELECT * FROM $wpdb->posts $where ORDER BY post_date_gmt ASC");
|
||||||
foreach ($posts as $post) {
|
foreach ($posts as $post) {
|
||||||
|
// Don't export revisions. They bloat the export.
|
||||||
|
if ( 'revision' == $post->post_type )
|
||||||
|
continue;
|
||||||
setup_postdata($post); ?>
|
setup_postdata($post); ?>
|
||||||
<item>
|
<item>
|
||||||
<title><?php echo apply_filters('the_title_rss', $post->post_title); ?></title>
|
<title><?php echo apply_filters('the_title_rss', $post->post_title); ?></title>
|
||||||
|
Loading…
Reference in New Issue
Block a user