[wordpress插件] Blogger ImporterBlogger进口商

wordpress 插件 文章 2020-03-07 10:50 506 0 全屏看文

AI助手支持GPT4.0

评分
64
描述

The Blogger Importer imports your blog data from a Google Blogger site into a WordPress.org installation.

Blogger导入程序将您的博客数据从Google Blogger站点导入WordPress.org安装。

Items imported

导入的项目

    • Categories
    • 类别

    • Posts (published, scheduled and draft)
    • 帖子(已发布,预定和草稿)

    • Comments (not spam)
    • 评论(不是垃圾邮件)

    • Images
    • 图片

    Items not imported

    未导入的项目

      • Pages
      • 页面

      • Widgets/Widget Data
      • 小部件/小部件数据

      • Templates/Theme
      • 模板/主题

      • Comment and author Avatars
      • 评论和作者头像

      Reference

      参考

        • http://www.simplepie.org/
        • http://www.simplepie.org/

        The following were referenced for implementing the images and links

        参考以下内容来实现图像和链接

          • https://wordpress.org/extend/pluginsemote-images-grabber
          • https://wordpress.org/extend/pluginsemote-images-grabber

          • http:/otions.okuda.ca/wordpress-plugins/blogger-image-import/
          • http:/otions.okuda.ca/wordpress-plugins/blogger-image-import/

          • https://wordpress.org/extend/plugins/cache-images/
          • https://wordpress.org/extend/plugins/cache-images/

          • https://wordpress.org/extend/plugins/tumblr-importer/
          • https://wordpress.org/extend/plugins/tumblr-importer/

          • https://core.trac.wordpress.org/ticket/14525
          • https://core.trac.wordpress.org/ticket/14525

          • http://wpengineer.com/1735/easier-better-solutions-to-get-pictures-on-your-posts/
          • http://wpengineer.com/1735/easier-better-solutions-to-get-pictures-on-your-posts/

          • http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/
          • http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/

          • http://wordpress.stackexchange.com/questions//media-sideload-image-file-name
          • http://wordpress.stackexchange.com/questions//media-sideload-image-file-name

          • http://wp.tutsplus.com/tutorials/plugins/a-guide-to-the-wordpress-http-api-the-basics/
          • http://wp.tutsplus.com/tutorials/plugins/a-guide-to-the-wordpress-http-api-the-basics/

          Known Issues

          已知问题

            • Some users have reported that their IFrames are stripped out of the post content.
            • 一些用户报告说,他们的iframe已从帖子内容中删除。

            • Requests for better performance of larger transfers and tranfers of images
            • 要求更好地表现较大的图像传输和传输

            • Review of behavior when it re-imports, partiularly are the counts correct
            • 重新导入时检查行为,特别是计数正确

            • Review using get_posts or get_comments with the appropriate parameters to get the counts and exists instead of using SQL
            • 使用带有适当参数的get_posts或get_comments进行查看以获取计数并存在,而不是使用SQL

            • Incorrect notice, PHP Notice: The data could not be converted to UTF-8.

            • 不正确的通知,PHP通知:无法将数据转换为UTF-8。

              You MUST have either the iconv or mbstring extension installed.

              您必须安装iconv或mbstring扩展名。

              This occurs even when Iconv is installed, could be related to Blogger reporting 0 comments

            • 即使已安装Iconv,也会发生这种情况,可能与Blogger报告0条评论有关

            • When the importer is running it’s not possible to stop it using the stop button
            • 导入程序运行时,无法使用“停止”按钮来停止

            • Blogger’s count of comments include those not linked to a post e.g.

            • Blogger的评论数量包括未链接到帖子的评论,例如

              the post has been deleted.

            • 该帖子已被删除。

            Filters and Actions

            过滤器和操作

            These actions and filters have been added so that you can extend the functionality of the importer without needing to modify the code.

            添加了这些操作和过滤器,以便您可以扩展导入程序的功能,而无需修改代码。

            Action – import_start – This is run when the import starts processing the records for a new blog

            操作– import_start –在导入开始处理新博客的记录时运行

            Action – import_done – This is run when the import finishes processing the records for a blog.

            操作– import_done –在导入完成处理博客记录时运行。

            Filter – blogger_importer_congrats – Passes the list of options shown to the user when the blog is complete, options can be added or removed.

            过滤器– blogger_importer_congrats –在博客完成后将显示的选项列表传递给用户,可以添加或删除选项。

安装步骤

    1. Upload the blogger-importer folder to the /wp-content/plugins/ directory
    2. blogger-importer 文件夹上载到 / wp-content / plugins / 目录

    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. 通过WordPress中的“插件”菜单激活插件

    Prerequisites

    先决条件

    The importer connects your server to the blogger server to copy across the posts.

    导入程序将您的服务器连接到博客服务器,以在各个帖子之间进行复制。

    For this to work you need to have connectivity from the server to the internet and also have at least one of the remote access protocols enabled, e.g.

    为此,您需要建立从服务器到Internet的连接,还必须至少启用一种远程访问协议,例如

    curl, streams or fsockopen.

    卷曲,溪流或fsockopen。

    You can use the Core Control plugin to test if these are working correctly.

    您可以使用Core Control插件来测试它们是否正常工作。

    The importer connects to Google over a secure connection so OpenSSL needs to be enabled on your server.

    导入程序通过安全连接连接到Google,因此需要在您的服务器上启用OpenSSL。

    The importer uses the SimplePie classes to read and process the data from blogger so you will need the php-xml module installed on your webserver.

    导入程序使用SimplePie类从Blogger读取和处理数据,因此您将需要在Web服务器上安装php-xml模块。

    Preparation

    准备

    It is strongly recommended that you disable all other plugins and caching during the import.

    强烈建议您在导入期间禁用所有其他插件和缓存

    This will ensure that the information transfers across as smoothly as possible and that posts and comments are correctly transferrred.

    这将确保信息尽可能顺利地传递,并确保正确地传递帖子和评论。

    How to use

    使用方法

      1. On your Blogger account, visit the Settings->Other page, and locate the “Export Blog” option.

      2. 在您的Blogger帐户上,访问“设置”->“其他”页面,然后找到“导出博客”选项。

        This will download an XML file containing your posts and comments.

      3. 这将下载包含您的帖子和评论的XML文件。

      4. In WordPress, the Blogger Importer is available from the Tools->Import menu.
      5. 在WordPress中,可以通过“工具”->“导入”菜单使用Blogger导入器。

      6. Upload the XML file to WordPress.
      7. 将XML文件上传到WordPress。

      8. The posts will be read and you will be given the option to map the authors of the posts appropriately.
      9. 将阅读帖子,并为您提供适当地映射帖子作者的选项。

      10. Allow the import to finish.
      11. 允许导入完成。

      12. If the import fails halfway, you can simply retry.

      13. 如果导入中途失败,则只需重试即可。

        Already imported posts will be skipped and not duplicated.

      14. 已导入的帖子将被跳过且不会重复。

下载地址
https://downloads.wordpress.org/plugin/blogger-importer.0.9.zip
-EOF-

AI助手支持GPT4.0