Changeset 47760 for trunk/tests/phpunit/tests/canonical/pageOnFront.php
- Timestamp:
- 05/04/2020 10:40:06 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/canonical/pageOnFront.php
r47122 r47760 59 59 // The page designated as the front page should redirect to the front of the site. 60 60 array( '/front-page/', '/' ), 61 // The front page supports the <!--nextpage--> pagination. 61 62 array( '/front-page/2/', '/page/2/' ), 62 63 array( '/front-page/?page=2', '/page/2/' ), 64 // The posts page does not support the <!--nextpage--> pagination. 65 array( '/blog-page/2/', '/blog-page/' ), 66 array( '/blog-page/?page=2', '/blog-page/' ), 67 // The posts page supports regular pagination. 63 68 array( '/blog-page/?paged=2', '/blog-page/page/2/' ), 64 69 );
Note: See TracChangeset
for help on using the changeset viewer.