書き換えルールを分析するツール?
-
-
分析部分がわかりません.これは具体的に何に役立つのでしょうか?書き換えルールを読むだけですか?これは私が今まで知っている唯一のプラグインです:http://wordpress.org/extend/plugins/askapaches-rewriterules-viewer/I don't understand the analyse part. For what should this be good for in concrete? just to read rewrite rules? that's the only plugin I'm aware of so far: http://wordpress.org/extend/plugins/askapaches-rewriterules-viewer/
- 0
- 2010-11-04
- hakre
-
@hakre:新しい書き換えルールを追加したいが、それが機能しない理由がわからない場合に備えて、分析とデバッグを行います.たとえば、私の現在のバージョンでは、クエリ変数が `WP ::parse_request()`によって読み取られるかどうかもチェックされます.これは、書き換えエンジンのドキュメントを理解し、場合によっては改善するためのより大きな取り組みの一部です.@hakre: Analyze and debug, in case you want to add a new rewrite rule but don't understand why it is not working. My current version for example also checks whether the query vars are read by `WP::parse_request()`. It is part of a larger effort to understand and maybe even improve the documentation of the rewrite engine.
- 0
- 2010-11-04
- Jan Fabry
-
デニスはここで興味深い側面を挙げました:http://wordpress.stackexchange.com/questions/3431/performance-of-my-permalink-structure/3437#3437--投稿/ページあたりのルールの数.Denis named an interesting aspect here: http://wordpress.stackexchange.com/questions/3431/performance-of-my-permalink-structure/3437#3437 -- number of rules per post / page.
- 0
- 2010-11-05
- hakre
-
1 回答
- 投票
-
- 2010-11-03
あなたがこれを尋ねるのはなんと偶然でしょう、ヤン!ちょうど今日、私は長い列車の旅に時間を費やし、書き換えルールを解析してクエリ変数を強調表示するRewriteAnalyzerプラグインを作成することにしました.その場でURLをテストして、どのクエリ変数が設定されるかを確認できます.
プラグインリポジトリで
、または Monkeyman RewriteAnalyzerと同じように見つけることができます.管理画面で新しいプラグインを検索するとき. Well what a coincidence that you ask this, Jan! Just today I had time on a long train journey and decided to write a Rewrite Analyzer plugin, one that parses your rewrite rules and highlights the query variables. You can test URLs right there and see what query variables will be set.
You can find it in the plugin repository, or just as Monkeyman Rewrite Analyzer when search for new plugins in your administration screen.
-
デバッグバーへの追加としてそれを持っているといいでしょう:)Nice would be to have that as an addition to the debug bar :)
- 1
- 2011-03-21
- kaiser
-
プラグインをプルできるSVNはありますか?Is there an SVN the plugin can be pulled from?
- 0
- 2011-04-13
- t31os
-
質問、1月:何かが赤で消されている場合、それは正確にはどういう意味ですか?Question, Jan: when something is crossed out in red, what does that mean exactly?
- 4
- 2011-06-24
- Manny Fleurmond
-
@Manny:赤いクエリ変数はパブリックとしてマークされていないため、 `$ wp_query`オブジェクトに送信されず、後でアクセスするのに苦労します.@Manny: Red query variables are not marked as public, so they will not be sent to the `$wp_query` object and you will have a hard time accessing them later.
- 1
- 2011-06-24
- Jan Fabry
-
非常に便利!ありがとう!私は完全に[動作するようになった](http://wordpress.stackexchange.com/questions/26497/querystring-parameter-getting-lost-in-rewrite-rule)ではありませんが、これまでのところ大きな助けになっています.Very useful! Thanks! I haven't totally [gotten things working](http://wordpress.stackexchange.com/questions/26497/querystring-parameter-getting-lost-in-rewrite-rule), but it's been a huge help so far.
- 0
- 2011-08-22
- Rebecca Chernoff
-
残念ながら、これはとても時代遅れです!私は試したことがなく、それ自体がかなり時代遅れの代替案に直行しました(更新なしで2年):https://wordpress.org/plugins/rewrite/-しかし、明らかに最新のワードプレスで動作しました(4.3.1).Too bad this is so outdated! I haven't even tried and went straight to an alternative, which is quite outdated itself (2 years without updates): https://wordpress.org/plugins/rewrite/ - but apparently it worked on newest wordpress (4.3.1).
- 0
- 2015-11-11
- cregox
-
@Cawas:それでもうまくいくかもしれないと思います.本格的なWordPressの作業を行ってからしばらく経ちましたが、コードには非常に下位互換性があります.@Cawas: I think it might still work. It has been a while since I did some serious WordPress work, but the code is very backwards compatible.
- 0
- 2015-11-12
- Jan Fabry
書き換えルールを分析するための優れたツールはありますか?私は常に正規表現とパラメータの置き換えに混乱します.
自分で作成したものをここに投稿して、他の人が使用できるようにしますが、他のツールを自由に追加してください!