Title: Postora Export for DOCX
Author: abdulrehmanseo
Published: <strong>2026 年 7 月 6 日</strong>
Last modified: 2026 年 7 月 6 日

---

搜尋外掛

![](https://ps.w.org/postora-export-for-docx/assets/banner-772x250.png?rev=3597721)

![](https://ps.w.org/postora-export-for-docx/assets/icon-256x256.png?rev=3597721)

# Postora Export for DOCX

 由 [abdulrehmanseo](https://profiles.wordpress.org/abdulrehmanseo/) 開發

[下載](https://downloads.wordpress.org/plugin/postora-export-for-docx.1.1.0.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/postora-export-for-docx/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/postora-export-for-docx/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/postora-export-for-docx/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/postora-export-for-docx/#developers)

 [技術支援](https://wordpress.org/support/plugin/postora-export-for-docx/)

## 外掛說明

Postora Export for DOCX lets you export a WordPress post, including an unpublished
draft, as a properly formatted Microsoft Word `.docx` file with one click.

The export is generated securely on your own server. No content is sent to an external
service, and no third-party PHP library is required.

**Features**

 * Download draft, pending, scheduled, private, and published posts.
 * Export from the Posts list or the post editor.
 * Include the title, status, author, last-modified date, categories, and featured
   image.
 * Preserve headings, paragraphs, bold text, italic text, underline, links, lists,
   nested lists, blockquotes, code blocks, tables, captions, and local Media Library
   images.
 * Distribute table columns automatically according to the number of cells.
 * Keep exports private with post-specific nonces and WordPress capability checks.
 * Protect server resources with image-count and image-size limits.
 * Build genuine DOCX files with PHP’s built-in `ZipArchive` extension.
 * Process everything locally without tracking, remote requests, or external services.

The plugin exports the currently saved database version of the post. Save or update
the post before downloading to include your latest editor changes.

Shortcodes are not executed by default. This avoids running unknown or expensive
shortcode callbacks during an export. Developers can enable trusted shortcodes with
the `postora_docx_process_shortcodes` filter.

## 螢幕擷圖

[⌊Download DOCX link in the Posts list.⌉⌊Download DOCX link in the Posts list.⌉[

Download DOCX link in the Posts list.

[⌊Download DOCX button in the post editor sidebar.⌉⌊Download DOCX button in the 
post editor sidebar.⌉[

Download DOCX button in the post editor sidebar.

[⌊Example exported Microsoft Word document.⌉⌊Example exported Microsoft Word document
.⌉[

Example exported Microsoft Word document.

## 安裝方式

 1. Upload the `postora-export-for-docx` folder to `/wp-content/plugins/`, or install
    the plugin ZIP through Plugins > Add New > Upload Plugin.
 2. Activate Postora Export for DOCX through the Plugins screen.
 3. Go to Posts and click “Download DOCX” beneath an eligible post.
 4. Alternatively, open a post and use the “Download DOCX” button in the editor sidebar.

The plugin requires the PHP Zip extension and checks for `ZipArchive` during activation.

## 常見問題集

### Does it work with drafts?

Yes. Draft export is one of the plugin’s primary use cases. Downloading a draft 
does not publish or modify it.

### Does it work with custom post types?

The default interface supports the regular Posts post type. Developers can add pages
or custom post types with the `postora_docx_supported_post_types` filter; the plugin
then adds the relevant row action and editor meta box automatically.

### Are images included in the export?

Yes. Featured images and inline images stored in the local WordPress uploads directory
are embedded in the DOCX file. Remote images are not downloaded.

### Are there image limits?

Yes. An export can include up to 50 unique images, with a maximum of 20 MB per image
and 100 MB of image data in total. Repeated uses of the same image are deduplicated.

### Does it require any extra PHP extensions?

It requires PHP’s `ZipArchive` extension. The plugin checks for this during activation
and displays a clear error when it is unavailable. The DOM extension is optional
because the plugin includes a fallback HTML parser.

### Are shortcodes executed?

No, not by default. Developers can enable trusted shortcode processing with the `
postora_docx_process_shortcodes` filter.

### Is anything sent to external servers?

No. All processing happens on your WordPress server. The plugin makes no remote 
requests and includes no analytics or tracking.

### Can export metadata be changed or disabled?

Yes. Developers can use the `postora_docx_metadata_settings` and `postora_docx_metadata_lines`
filters to remove or customise status, author, modified-date, and category information.

## 使用者評論

這個外掛目前沒有任何使用者評論。

## 參與者及開發者

以下人員參與了開源軟體〈Postora Export for DOCX〉的開發相關工作。

參與者

 *   [ abdulrehmanseo ](https://profiles.wordpress.org/abdulrehmanseo/)

[將〈Postora Export for DOCX〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/postora-export-for-docx)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/postora-export-for-docx/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/postora-export-for-docx/)，或
透過 [RSS](https://plugins.trac.wordpress.org/log/postora-export-for-docx/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/postora-export-for-docx/)。

## 變更記錄

#### 1.1.0

 * Added secure DOCX export for draft, pending, scheduled, private, and published
   posts.
 * Added post-list and editor-sidebar download actions.
 * Added headings, inline formatting, nested lists, blockquotes, code blocks, tables,
   captions, featured images, and local inline-image support.
 * Added automatic table cell widths based on column count.
 * Added depth-aware indentation for nested lists.
 * Added canonical uploads-path validation to prevent local file traversal.
 * Added limits of 50 images, 20 MB per image, and 100 MB total image data.
 * Added image deduplication.
 * Added safe error messages and private debug logging.
 * Added ZIP-operation and download-stream checks.
 * Added emoji and supplementary Unicode support.
 * Added network-disabled DOM parsing with a fallback parser when DOM is unavailable.
 * Added strict handling for unpublished WordPress GMT zero dates.
 * Added an activation check for PHP `ZipArchive`.
 * Added filters for supported post types, metadata, rendered content, shortcodes,
   and optional JPEG metadata stripping.
 * Added export and cleanup action hooks for integrations and auditing.

#### 1.0.0

 * Initial development release.

## 中繼資料

 *  版本 **1.1.0**
 *  最後更新 **18 小時前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 6.0 或更新版本 **
 *  已測試相容的 WordPress 版本 **7.0**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/postora-export-for-docx/)
 * 標籤:
 * [docx](https://tw.wordpress.org/plugins/tags/docx/)[download](https://tw.wordpress.org/plugins/tags/download/)
   [draft](https://tw.wordpress.org/plugins/tags/draft/)[export](https://tw.wordpress.org/plugins/tags/export/)
   [word](https://tw.wordpress.org/plugins/tags/word/)
 *  [進階檢視](https://tw.wordpress.org/plugins/postora-export-for-docx/advanced/)

## 評分

這個項目尚無任何評論記錄。

[Your review](https://wordpress.org/support/plugin/postora-export-for-docx/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/postora-export-for-docx/reviews/)

## 參與者

 *   [ abdulrehmanseo ](https://profiles.wordpress.org/abdulrehmanseo/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/postora-export-for-docx/)