前言介紹
- 這款 WordPress 外掛「Rewrite Rule Testing」是 2014-05-19 上架。
- 目前有 300 個安裝啟用數。
- 上一次更新是 2014-05-20,距離現在已有 4002 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 3.9 以上版本才可以安裝。
- 有 2 人給過評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
tests | testing | permalinks | rewrite rules |
內容簡介
這個外掛提供一個簡單的介面,可以測試您的自訂重新導向規則。
這個外掛的目的是為了能夠測試您自己的重新導向規則,所以您可能最感興趣的是如何進行測試,對吧?這個外掛提供了一個過濾器 rewrite_testing_tests,讓您添加自己的測試。此過濾器傳遞一個名稱 => 測試的關聯陣列。測試陣列是一個 URI => 預期匹配的關聯陣列。在外層陣列中,「名稱」是任意的,僅供您參考。在內層陣列中,「URI」是您要測試的路徑,而「預期匹配」則是 WordPress 應該找到的重新導向匹配項。
夠聊了,這裡有個示例:
function my_rewrite_tests( $tests ) {
return array(
'Events' => array(
'/event/super-bowl/' => 'index.php?event=$matches[1]',
'/event/super-bowl/page/2/' => 'index.php?event=$matches[1]&paged=$matches[2]'
)
);
}
add_filter( 'rewrite_testing_tests', 'my_rewrite_tests' );
您可以查看 test_cases() 方法,其中包含一套完整的「日期和名稱」永久連結結構的測試。當然,您不必把這些留在這裡(事實上,上面的示例會清除它們),除非您想確保您自定義的重新導向未影響 WordPress 核心的重新導向。如果您不使用「日期和名稱」永久連結,您需要調整測試以符合您的永久連結結構。
待完成事項
添加「除錯條」擴展,讀取瞬時;瞬時會在重新導向規則被刷新時進行更新。此「除錯條」擴展將顯示通過/失敗狀態並直接連結至設定頁面。
為其他永久連結結構添加測試?
添加以 phpunit 的形式運行此外掛的方法。
原文外掛簡介
This plugin provides a simple interface for testing your custom rewrite rules.
The purpose of this plugin is to be able to test your own rewrite rules, so
you’re probably most interested in knowing how to do that, right? The plugin
provides a filter, rewrite_testing_tests to add your own tests. That filter
passes an associative array of name => tests. The tests array is an associative
array of URI => expected match. In the outer array, the “name” is arbitrary and
for your own reference. In the inner array, the “URI” is the path you want to
test, and the “expected match” is what WordPress should find as a rewrite
match.
Enough chit-chat, here’s an example:
function my_rewrite_tests( $tests ) {
return array(
'Events' => array(
'/event/super-bowl/' => 'index.php?event=$matches[1]',
'/event/super-bowl/page/2/' => 'index.php?event=$matches[1]&paged=$matches[2]'
)
);
}
add_filter( 'rewrite_testing_tests', 'my_rewrite_tests' );
You can see the test_cases() method for a full suite of tests for the “Day
and Name” permalink structure. It’s not necessary to leave these in (in fact,
the above demo would wipe them out), unless you want to make sure that your
custom rewrites aren’t affecting core rewrites. If you aren’t using “Day and
Name” permalinks, you’ll need to adjust the tests to fit your permalink
structure.
Todo
Add a debug bar extension which reads a transient; the transient would be
updated whenever rewrite rules are flushed. The debug bar extension would
show pass/fail status and link directly to the settings page.
Add tests for other permalink structures?
Add a way to run this as part of phpunit
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Rewrite Rule Testing」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
延伸相關外掛(你可能也想知道)
Rewrite Rules Inspector 》這是一個簡單的 WordPress 後台工具,用於檢查 rewrite 規則。您可以查看所有 rewrite 規則的清單,檢視哪些 rewrite 規則符合特定的 URL(以及它們符合的優...。
Debug Bar Rewrite Rules 》Debug Bar Rewrite Rules 外掛能將透過篩選條件改變的 Rewrite Rules 的相關資訊新增至 Debug Bar 的一個新面板中。此外掛是 Debug Bar 的擴充套件,但也可以...。
WP Permastructure 》此外,除了控制自訂文章類型的永久網址,此外掛還支援在您的永久網址結構中使用自訂分類。, 不僅如此,您還可以控制完整的永久網址,使文章類型別名不需要出...。
Debug Bar Rewrite Rules 》顯示網站當前的重新導向規則。需要安裝 Debug Bar 外掛。。
My Permalink Demo 》在製作我的 Read Offline 插件時,我想實現永久連結功能。經過大量搜尋和閱讀 WordPress 源代碼後,我決定分享我的發現。, 這個有註解的插件演示了如何為你的...。
Category Post URLs 》WordPress文章的類別及子類別URL外掛,可以啟用文章類別URL並使文章遵循類別、父類別及子類別來定義其永久連結。假設您的網誌類別結構如下:, , 新聞, , 漫威...。