开发者 |
mboynes
alleyinteractive |
---|---|
更新时间 | 2014年5月21日 00:53 |
捐献地址: | 去捐款 |
PHP版本: | 3.9 及以上 |
WordPress版本: | 3.9 |
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.
Out-of-the-box, this plugin is setup to test core rewrites for the "Day and Name" permalink structure. The purpose of this plugin is not to test core rewrites; these are just to serve as a demonstration.