这取决于你如何导入这些帖子。您可以使用wp_insert_post()
具有import_id
:
$postToBeInserted = array(
\'post_title\' => \'Your Post Title\',
\'post_content\' => \'Your post content...\',
\'import_id\' => 154
);
wp_insert_post($postToBeInserted);
如果没有具有指定
import_id
邮报会有
ID
. 这样,您就不必处理元字段,所有迁移的帖子都将具有相同的
ID
与前面的CMS一样。虽然有一个缺点,因为如果您继续在旧CMS中发布新帖子,可能会导致潜在的冲突。