[WordPress] 外掛分享: WP Avertere

首頁外掛目錄 › WP Avertere
WordPress 外掛 WP Avertere 的封面圖片
30+
安裝啟用
★★★★★
5/5 分(1 則評價)
4879 天前
最後更新
問題解決
WordPress 3.4+ v1.1.0 上架:2012-07-22

內容簡介

此外掛讓您輕鬆地從您的 WordPress 網站上的任何文章、頁面或其他文章類型的 URL 設定重新導向到另一個 URL,可以是您的站內或站外的 URL。重新導向可以是永久的 (HTTP 301) 或暫時的 (HTTP 302),並且可以輕鬆地更改或完全刪除。

設定和選項包括:

您想要重新導向到的 URL。
重新導向類型(永久或暫時)
驗證重定向 URL,以確保它格式正確。

除了設置重定向外,該插件還將原始文章或頁面的永久鏈接替換為重定向的永久鏈接或外部 URL;當您將鼠標懸停在重新導向的永久鏈接上時,您會看到新的鏈接或外部 URL,而不是原始的鏈接。

安裝並啟用插件後,插件會向管理員編輯文章/頁面添加一個「重定向此文章/頁面/等等」的元框。只需創建一個新文章或編輯現有文章,添加要重新導向到的 URL(這里建議使用複制和粘貼,以確保沒有打字錯誤),選擇重定向是永久還是暫時,按一下“檢查 URL”按鈕以確保您的 URL 格式正確,然後保存文章。您完成了。

該插件的主要用途是將文章和頁面重新導向,但您還可以使用它來:

將文章轉換為頁面;當文章需要定期更新且更適合成為您站點上的頁面時,此功能非常有用。
添加到外部網站的菜單欄連結;可以創建一個空的頁面作為菜單欄連結,然後將該頁面重新導向到外部的 URL,而無需編輯您的主題的 functions.php 中的任何代碼。
創建快捷方式類別或標記存檔鏈接;可以創建一個新的空頁面(例如/plugins),然後將該頁面重新導向到 /tags/plugins 上。

過濾器支援和使用

WP Avertere 支援一個過濾器,wp_avertere_protocols,可讓您更改 WordPress 和插件允許的可接受 URL 協議集。

示例:為插件添加對 GitHub 存儲庫的支持

add_filter ('wp_avertere_protocols', 'add_github_protocol');

function add_github_protocol ($protocols) {
// protocols = array ('name', 'name', ...)
$protocols[] = 'git';

return $protocols;
}

外掛標籤

開發者團隊

⬇ 下載最新版 (v1.1.0) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「WP Avertere」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

This plugin allows you to easily set up redirections from the URL of any post, page or other post type on your WordPress site to another URL, either on your site or external to your site. Redirections can either be permanent (HTTP 301) or temporary (HTTP 302) and can easily be changed or deleted entirely.
Settings and options include:

The URL you want to redirect to.
The type of redirection, permanent or temporary
Validation of the redirect URL to ensure it is well formed.

In addition to setting up a redirect, the plugin replaces the original post’s or page’s permalink with the redirected permalink or external URL; when you hover your mouse pointer over a redirected permalink you will see the new permalink or external URL not the original.
Once installed and activated, the plugin adds a Redirect This Post/Page/etc meta box to the admin Edit Post/Page. Simply create a new post, or edit an existing one, add the URL you want to redirect to (copying and pasting is a good idea here to ensure there’s no typing errors), choose whether the redirection is permanent or temporary, click on the Check URL button to ensure your URL is well formed and save the post. You’re done.
While the main use of the plugin is to redirect posts and pages, you can also use it to:

Convert a post to a page; useful for when the post needs to be kept updated regularly and is more suited to be a page on your site.
Add a menu bar link to an external site; you can create a new blank page as a menu bar link and then redirect that page to the external URL with no need to edit any code in your theme’s functions.php.
Create a shortcut category or tag archive link; you can create a new blank page, such as /plugins and then redirect that page to /tags/plugins.

Filter Support And Usage
WP Avertere supports a single filter, wp_avertere_protocols that allows you to change the set of acceptable URL protocols that WordPress and the plugin permits.
Example: Add support for GitHub repositories to the plugin.
add_filter ('wp_avertere_protocols', 'add_github_protocol');

function add_github_protocol ($protocols) {
// protocols = array ('name', 'name', ...)
$protocols[] = 'git';

return $protocols;
}

延伸相關外掛

文章
Filter
Apply Filters
Mastodon