Import category descriptions. Props Denis-de-Bernardy. fixes #8840

git-svn-id: http://svn.automattic.com/wordpress/trunk@11321 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-05-13 23:23:26 +00:00
parent 1a09fcc6ba
commit 5c4aebf1ab
1 changed files with 2 additions and 1 deletions

View File

@ -300,6 +300,7 @@ class WP_Import {
continue;
$category_nicename = $this->get_tag( $c, 'wp:category_nicename' );
$category_description = $this->get_tag( $c, 'wp:category_description' );
$posts_private = (int) $this->get_tag( $c, 'wp:posts_private' );
$links_private = (int) $this->get_tag( $c, 'wp:links_private' );
@ -310,7 +311,7 @@ class WP_Import {
else
$category_parent = category_exists($parent);
$catarr = compact('category_nicename', 'category_parent', 'posts_private', 'links_private', 'posts_private', 'cat_name');
$catarr = compact('category_nicename', 'category_parent', 'posts_private', 'links_private', 'posts_private', 'cat_name', 'category_description');
$cat_ID = wp_insert_category($catarr);
}