Title: Press This (發佈至網站)
Author: WordPress.org
Published: <strong>2014 年 6 月 4 日</strong>
Last modified: 2026 年 3 月 26 日

---

搜尋外掛

![](https://ps.w.org/press-this/assets/banner-772x250.png?rev=3439079)

![](https://ps.w.org/press-this/assets/icon.svg?rev=3439079)

# Press This (發佈至網站)

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

[下載](https://downloads.wordpress.org/plugin/press-this.2.0.2.zip)

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

 [技術支援](https://wordpress.org/support/plugin/press-this/)

## 外掛說明

[發佈至網站] 書籤小工具能夠輕鬆擷取網頁內容並建立新文章，它還提供選擇頁面上圖片或
影片的功能，以便在文章中使用。使用 [發佈至網站] 書籤小工具，就能夠以快速簡便的方式
摘錄網路上其他頁面的內容。

#### 2.0 版開始支援區塊編輯器

Press This 2.0 為書籤小工具彈出式訊息導入了新式 WordPress 區塊編輯器體驗，使用者
現在可以使用 [段落]、[標題]、[圖片]、[引文]、[清單] 及 [嵌入內容] 等熟習的區塊撰寫
文章。

**全新功能：**

 * **區塊編輯器**：完整的區塊編輯器整合，提供一致的 WordPress 編輯體驗
 * **智慧型文章格式建議**：依據內容自動建議視訊、引文或連結等文章格式
 * **經過強化的內容擷取**：使用支援 JSON-LD 結構資料的加強式擷取
 * **僅用戶端擷取**：全部內容擷取僅會在使用者瀏覽器中進行，以便獲得更好的隱私權及
   安全性
 * **支援精選圖片**：可將擷取內容中的任何圖片設定為文章的精選圖片
 * **改進的媒體格狀排列**：對嵌入內容中支援的視訊及音訊提供更好的縮圖顯示

#### 開發者需要了解的篩選器

Press This 2.0 用於自訂的全新篩選器：

 * `press_this_allowed_blocks`：自訂編輯器中可用的區塊
 * `press_this_post_format_suggestion`：修改自動建議的文章格式

參閱下方的〈[開發者說明文件](https://tw.wordpress.org/plugins/press-this/?output_format=md#developer-documentation)〉
以進一步了解。

### 為外掛貢獻心力

如需提報程式碼錯誤及提取要求，請前往這個外掛的 [GitHub 存放庫](https://github.com/WordPress/press-this)。

### 開發者說明文件

#### 2.0 版中的全新勾點及篩選器

**press_this_allowed_blocks**

在 Press This 編輯器中自訂可用哪些區塊。

    ```
    add_filter( 'press_this_allowed_blocks', function( $blocks ) {
        // Add the gallery block
        $blocks[] = 'core/gallery';

        // Remove the embed block
        $blocks = array_filter( $blocks, function( $block ) {
            return $block !== 'core/embed';
        } );

        return $blocks;
    } );
    ```

預設區塊：`core/paragraph`、`core/heading`、`core/image`、`core/quote`、`core/list`、`
core/list-item` 及 `core/embed`

**press_this_post_format_suggestion**

修改或覆寫依據內容自動建議的文章格式。

    ```
    add_filter( 'press_this_post_format_suggestion', function( $suggested_format, $data ) {
        // If the URL contains 'podcast', suggest audio format
        if ( ! empty( $data['u'] ) && strpos( $data['u'], 'podcast' ) !== false ) {
            return 'audio';
        }

        return $suggested_format;
    }, 10, 2 );
    ```

`$data` 陣列所擷取的內容包含下列項目：
 – `u`：來源網址 – `s`：選取的文字 – `t`：
頁面標題 – `_images`：圖片網址陣列 – `_embeds`：嵌入內容網址陣列 – `_meta`：中繼
資料標籤資料 – `_jsonld`：JSON-LD 結構化資料

#### 保留自之前 1.x 版中的勾點

現有可繼續使用的全部勾點：

 * `press_this_redirect_in_parent`：控制文章儲存重新導向行為
 * `press_this_save_post`：儲存前篩選文章資料
 * `press_this_save_redirect`：儲存後篩選重新導向網址
 * `enable_press_this_media_discovery`：開啟/關閉媒體擷取
 * `press_this_data`：篩選完整擷取的資料陣列
 * `press_this_suggested_html`：篩選預設內容範本
 * `shortcut_link`：自訂書籤小工具網址

### 外掛開發源由

WordPress 從相當早期的版本開始，就提供了擷取其他網站內容片段供網站作者發佈新文章
的方式。

在 WordPress 2.5 版移除舊版的 [發佈至網誌] 功能後，隨即在 WordPress 2.6 版加入新版
的 [發佈至網誌] 功能。一直到 WordPress 4.2 版這個重大更新前，這個功能幾乎沒有任何
改進。

從 WordPress 4.9 版起，[發佈至網站] 成為一個**正規外掛**，即 WordPress.org 的官方
外掛。所有的網站都可以安裝及使用這個外掛，同時也簡化了 WordPress 核心之外的重要功能，
就如同之前完成的各個匯入程式一樣。

Press This 2.0 已改用新式的區塊編輯器，以便與 WordPress 新式編輯體驗保持一致，同時
與外掛過去產生的項目保持回溯相容性。

## 螢幕擷圖

[[

[[

[[

[[

## 安裝方式

 1. 在管理後台前往 [外掛]→[安裝外掛] 以安裝外掛。
 2. 前往管理後台的 [工具] 頁面以了解其他安裝步驟。

## 常見問題集

### Press This 是否相容於已有的書籤小工具？

是。由 1.x 版產生的書籤小工具可以繼續執行，但是我們建議更新網站上已有的書籤小工具，
以獲得 2.0 版更新所帶來的加強功能。使用舊版書籤小工具會出現更新提示。

### Press This 可以使用哪些區塊？

Press This 預設包含 [段落]、[標題]、[圖片]、[引文]、[清單] 及 [嵌入內容] 區塊。開發
者可以使用 `press_this_allowed_blocks` 篩選器加以自訂。

### 是否可以使用 WordPress 完整的編輯器功能？

絕對可以。在 [發佈] 下拉式選單中點擊 [標準編輯器] 選項並儲存成草稿，便能在 WordPress
區塊編輯器中繼續編輯。

## 使用者評論

![](https://secure.gravatar.com/avatar/6e884a89730c7acd3f5350425b69848477a26de263f028a9a7e4edcb8591362b?
s=60&d=retro&r=g)

### 󠀁[Currently partially broken](https://wordpress.org/support/topic/works-great-8082/)󠁿

 [silentwisher](https://profiles.wordpress.org/silentwisher/) 2024 年 10 月 16 日

Its currently broken causing many images being generated for the featured image.
Please fix.

![](https://secure.gravatar.com/avatar/0771f018c5c481aecb62b5789070e663f32e747831b01c657b7246e43dc9ed21?
s=60&d=retro&r=g)

### 󠀁[Must Have](https://wordpress.org/support/topic/must-have-657/)󠁿

 [dmsr](https://profiles.wordpress.org/dmsr/) 2022 年 7 月 22 日

J’adore cette fonctionnalité de WP, pourquoi s’en passer si on partage des liens
sur son site!?!?

![](https://secure.gravatar.com/avatar/38247a09d4c18d5d074d157a12cff9d21b8c65a0ab22dfa755cca45f44aab8c2?
s=60&d=retro&r=g)

### 󠀁[Worthless Without Scriptlet](https://wordpress.org/support/topic/worthless-without-scriptlet/)󠁿

 [lestado](https://profiles.wordpress.org/lestado/) 2021 年 10 月 29 日

If you don’t have the scriptlet bookmarked already this plugin is WORTHLESS because
there is literally NO PLACE to get the code for the bookmark ANYWHERE.

![](https://secure.gravatar.com/avatar/e58d28edc2f63935b090bb12b94e7a18727823d04d3a4a34e7133231f9cc69fa?
s=60&d=retro&r=g)

### 󠀁[Great you continue developing this](https://wordpress.org/support/topic/great-you-continue-developing-this/)󠁿

 [comunicacionabierta](https://profiles.wordpress.org/comunicacionabierta/) 2021
年 3 月 7 日

I think this is one of the perfect plugins to keep the blogs alive and helping to
make them more a personal bitacora. Thanks!

![](https://secure.gravatar.com/avatar/89eea1e88f6ca014b3bef4218d334e579f6eae3452bda7ab34e076412a1ab97f?
s=60&d=retro&r=g)

### 󠀁[Tried, killed browser (Safari), uninstalled.](https://wordpress.org/support/topic/tried-killed-browser-safari-uninstalled/)󠁿

 [bkahlert](https://profiles.wordpress.org/bkahlert/) 2020 年 4 月 27 日

I installed it, wrote a post, tried to save, my Safari browser hang, consumed more
than 4GB of memory and finally crashed with my post gone of course.

![](https://secure.gravatar.com/avatar/776e9f93cb72a6ef49cc303f0f3a5843419a07f0043cb23d64f49db44c56aeba?
s=60&d=retro&r=g)

### 󠀁[Pretty Slick. Forgot About This Guy](https://wordpress.org/support/topic/pretty-slick-forgot-about-this-guy/)󠁿

 [Seth Goldstein](https://profiles.wordpress.org/goldsteinmedia/) 2018 年 12 月 
27 日

Forgot about Press This. Never used it in the past. But now I think I’ll be addicted.

 [ 閱讀全部 25 則使用者評論 ](https://wordpress.org/support/plugin/press-this/reviews/)

## 參與者及開發者

以下人員參與了開源軟體〈Press This (發佈至網站)〉的開發相關工作。

參與者

 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Brandon Kraft ](https://profiles.wordpress.org/kraftbj/)

〈Press This (發佈至網站)〉外掛目前已有 24 個本地化語言版本。 感謝[全部譯者](https://translate.wordpress.org/projects/wp-plugins/press-this/contributors)
為這個外掛做出的貢獻。

[將〈Press This (發佈至網站)〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/press-this)

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

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

## 變更記錄

#### 2.0.2

 * **New:** Undo/redo support in the block editor (Ctrl+Z / Ctrl+Shift+Z)
 * **New:** Block transform keyboard shortcuts (e.g. heading, list, quote)
 * **New:** Rich text format keyboard shortcuts via format-library (bold, italic,
   link, etc.)
 * **New:** Bookmarklet now preserves HTML formatting in text selections
 * **Fix:** Critical error when saving posts with external images in REST context
 * **Fix:** Scraped media inserting at bottom of post instead of cursor position
 * **Fix:** Quote block unwrap losing nested inner blocks
 * **Fix:** Category panel styles not loading and stale search filter results
 * **Fix:** Stale state in category toggle handler
 * **Change:** Removed auto-suggestion of link post format
 * **Change:** Restored category search filter using Gutenberg components

#### 2.0.1

 * **New:** Gutenberg block editor replaces TinyMCE for modern editing experience
 * **New:** Smart post format auto-suggestion based on content type
 * **New:** `press_this_allowed_blocks` filter for customizing available blocks
 * **New:** `press_this_post_format_suggestion` filter for customizing format suggestions
 * **New:** JSON-LD structured data extraction for better content discovery
 * **New:** Open Graph video metadata extraction for improved embed detection
 * **New:** Featured image selection from scraped images
 * **New:** Alternate canonical URL detection via hreflang
 * **Improved:** Client-side only content extraction (removed server-side scraping)
 * **Improved:** Media grid with video/audio type indicators
 * **Improved:** Bookmarklet version detection with upgrade prompts
 * **Improved:** Title extraction now checks JSON-LD headline
 * **Improved:** Description extraction now checks JSON-LD description
 * **Compatibility:** All 1.x hooks and filters preserved
 * **Compatibility:** Legacy bookmarklet URL format continues to work
 * **Requires:** WordPress 6.9 or higher
 * **Requires:** PHP 7.4 or higher

#### 1.1.2

 * Fixes the styling of the .press-this .modal-close class (props https://github.
   com/crishnakh)
 * Bumps the Tested up to version to 6.7.1

#### 1.1.1

 * Corrects an issue with the packaging of the plugin for SVN.

#### 1.1.0

 * Restores the bookmarklet functionality previously found in WordPress 4.8 and 
   prior verions.

#### 1.0

 * Initial release as a plugin. Previously part of WordPress itself.

## 社群版外掛

這個外掛由社群人員開發及提供技術支援。

## 中繼資料

 *  版本 **2.0.2**
 *  最後更新 **3 個月前**
 *  啟用安裝數 **5,000+**
 *  WordPress 版本需求 ** 6.9 或更新版本 **
 *  已測試相容的 WordPress 版本 **7.0**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [Albanian](https://sq.wordpress.org/plugins/press-this/)、[Chinese (China)](https://cn.wordpress.org/plugins/press-this/)、
   [Chinese (Taiwan)](https://tw.wordpress.org/plugins/press-this/)、[Croatian](https://hr.wordpress.org/plugins/press-this/)、
   [Czech](https://cs.wordpress.org/plugins/press-this/)、[English (Australia)](https://en-au.wordpress.org/plugins/press-this/)、
   [English (Canada)](https://en-ca.wordpress.org/plugins/press-this/)、[English (US)](https://wordpress.org/plugins/press-this/)、
   [French (Belgium)](https://fr-be.wordpress.org/plugins/press-this/)、[French (France)](https://fr.wordpress.org/plugins/press-this/)、
   [German](https://de.wordpress.org/plugins/press-this/)、[Greek](https://el.wordpress.org/plugins/press-this/)、
   [Italian](https://it.wordpress.org/plugins/press-this/)、[Japanese](https://ja.wordpress.org/plugins/press-this/)、
   [Korean](https://ko.wordpress.org/plugins/press-this/)、[Norwegian (Bokmål)](https://nb.wordpress.org/plugins/press-this/)、
   [Portuguese (Brazil)](https://br.wordpress.org/plugins/press-this/)、[Romanian](https://ro.wordpress.org/plugins/press-this/)、
   [Russian](https://ru.wordpress.org/plugins/press-this/)、[Serbian](https://sr.wordpress.org/plugins/press-this/)、
   [Slovenian](https://sl.wordpress.org/plugins/press-this/)、[Spanish (Chile)](https://cl.wordpress.org/plugins/press-this/)、
   [Spanish (Spain)](https://es.wordpress.org/plugins/press-this/)、[Swedish](https://sv.wordpress.org/plugins/press-this/)、
   及 [Turkish](https://tr.wordpress.org/plugins/press-this/).
 *  [將這個外掛本地化為你的母語版本](https://translate.wordpress.org/projects/wp-plugins/press-this)
 * 標籤:
 * [Bookmarklet](https://tw.wordpress.org/plugins/tags/bookmarklet/)[gutenberg](https://tw.wordpress.org/plugins/tags/gutenberg/)
   [photo post](https://tw.wordpress.org/plugins/tags/photo-post/)[post](https://tw.wordpress.org/plugins/tags/post/)
   [Quick Post](https://tw.wordpress.org/plugins/tags/quick-post/)
 *  [進階檢視](https://tw.wordpress.org/plugins/press-this/advanced/)

## 評分

 3.7 星，滿分為 5 星

 *  [  15 個 5 星使用者評論     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=5)
 *  [  2 個 4 星使用者評論     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=4)
 *  [  0 個 3 星使用者評論     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=3)
 *  [  1 個 2 星使用者評論     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=2)
 *  [  7 個 1 星使用者評論     ](https://wordpress.org/support/plugin/press-this/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/press-this/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/press-this/reviews/)

## 參與者

 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Brandon Kraft ](https://profiles.wordpress.org/kraftbj/)

## 技術支援

最近 2 個月解決的問題:

     總計 2 個問題，已解決 0 個

 [檢視技術支援論壇](https://wordpress.org/support/plugin/press-this/)

## 贊助

想要支援這個外掛的發展嗎？

 [ 贊助這個外掛 ](http://wordpressfoundation.org/donate/)