説明
リライトルールを調査するためのシンプルな WordPress 管理ツールです。すべてのリライトルールの一覧を表示したり、指定したURLにマッチするリライトルール(およびマッチする優先順位)を確認したり、リライトルールの異なるソースでフィルタリングしたりできます。リライトルールを再生成するために、ソフトフラッシュを実行します。
元々は WordPress VIP でホストされているクライアント向けに開発されたものですが、開発環境などにも使えると考えました。GitHub でプラグインを自由にフォークしてください – プルリクエストはいつでも歓迎します。フィードバック、質問、バグレポート、機能リクエストは GitHub の issues で受け付けています。
スクリーンショット
インストール
WordPress 内からプラグインをインストールする
- WordPress ダッシュボードの「プラグイン」ページにアクセスし、ページ上部の「新規追加」をクリックします。
- 右側の検索バーを使用して「rewrite-rules-inspector」を検索します。
- 「今すぐインストール」をクリックしてプラグインをインストールします。
- インストール後、「有効化」をクリックしてプラグインを有効にします。
手動でプラグインをインストールする
- WordPress.org からプラグインをダウンロード、または GitHub リリースページから最新版を入手します。
- ダウンロードしたファイルを解凍します。
rewrite-rules-inspector
ディレクトリを/wp-content/plugins
にアップロードします。- WordPress ダッシュボードの「プラグイン」ページにアクセスし、新しくインストールしたプラグインを探します。
- 「アクティベート」をクリックしてサイトのプラグインを有効にします。
評価
2021年11月7日
Whenever you change a custom post type, you must flush the rewrite rules. This plugin does in in a single click. Additionally it enables you to check your rewrite rules against your URLs to make sure everything is working as it should. This is one of my essential plugins.
2021年3月16日
Thank you man, you saved me a lot of time!!
2018年11月27日
Simple and straight forward to solve issues with rewrite rules.
2018年3月25日
Love the plugin but noticed today, whilst debugging a new plugin I’m writting, that the plugin still uses the depreciated functions: screen_icon() and get_screen_icon().
Both have gone depreciated since 3.8.0 so I reckon a minor update to avoid these errors from popping up in the debug mode is worth the effort 🙂
The fix – with backwards compatibility (do we need that?) – would be to change:
<?php screen_icon( 'tools' ); ?>
into:
<?php if ( function_exists('screen_icon') ) screen_icon( 'tools' ); ?>
___
(!) Notice: screen_icon is deprecated since version 3.8.0 with no alternative available.
(!) Notice: get_screen_icon is deprecated since version 3.8.0 with no alternative available.
Location ..\rewrite-rules-inspector.php:208
2017年11月7日
I’m using this plugin for developing rewrite rules. It’s the best plugin for developing!
2017年9月16日
Added to my short list of essential plugins for dev- and staging-environments.
貢献者と開発者
Rewrite Rules Inspector はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。
貢献者変更履歴
変更履歴をご覧ください。