使用WXR格式将帖子标签导入Wordpress

时间:2015-02-02 12:49:44

标签: wordpress

我从传统系统转移到Wordpress。我已经读过WXR导入格式没有正式记录,但是this sample can be used as documentation

话虽如此,为什么这篇文章并没有标记为"真棒"?使用

在WXR文件的顶部创建了很棒的标记
<tag>
    <term_idname>2781</term_idname>
    <tag_slug>awesome</tag_slug>
    <tag_name>
        <![CDATA[awesome]]>
    </tag_name>
</tag>

导入后我在后端找到它。但是帖子没有标记。没有帖子被标记。但所有标签都是导入的,只有0个孩子。这就是我尝试导入帖子的方式:

<item>
    <title>The title is awesome</title>
    <link>http://example.com/awesome</link>
    <creator>This Ramvi</creator>
    <guid isPermaLink="false">http://example.com/awesome</guid>
    <description></description>
    <encoded>
        <![CDATA[<p>Very short post
        </p>]]>
    </encoded>
    <post_id>843156</post_id>
    <post_date>2014-10-22 10:34</post_date>
    <post_date_gmt>2014-10-22 08:34</post_date_gmt>
    <comment_status>open</comment_status>
    <ping_status>open</ping_status>
    <post_name>Really awesome post</post_name>
    <status>publish</status>
    <category domain="tag">
        <![CDATA[awesome]]>
    </category>
    <post_type>post</post_type>
</item>

你能发现我做错了吗?

1 个答案:

答案 0 :(得分:0)

答案几乎与问题中链接的样本有关。您需要两行来为帖子添加标签:

<category domain="tag"><![CDATA[NewTag]]></category>
<category domain="tag" nicename="newtag"><![CDATA[NewTag]]></category>