Are wildcard pages limited to one level of depth

0

I'm having some trouble with wildcard pages.

I made a pod page called 'test/*' which simply prints out the url args via pods_url_varible() function. The full url to this page is http://127.0.0.1/pods1/test/test1 this yields what I expected. I get the vars printed out on the page.

however, if I add one more level to the address, "http://127.0.0.1/pods1/test/test1/test2" I get a 404 not found. The [pods pages][1] documentation says the second form should work also.

I'm using: <pre> PHP 5.3.3-1ubuntu9.3 Apache/2.2.16 (Ubuntu) MySQL 5.1.49-1ubuntu8.1 Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.205 Safari/534.16 WordPress 3.1.1 -- Active Plugins -- Pods CMS Framework 1.9.5.1 Pods UI 0.7.3.1 Pods UI Demo 0.7.3.1 </pre>

[1]: http://podscms.org/codex/pod_pagesPods UI Demo 0.7.3.1

asked Apr 20 '11 at 4:27

txyoji

1

edited Apr 20 '11 at 4:29

add comment
enter at least 15 characters

2 Answers

0

Hopefully this will help you: http://wordpress.org/support/topic/pods-cms-hierarchies-parent-child-and-sub-child-pages

answered Apr 20 '11 at 5:01

Masino Sinaga

41

add comment
enter at least 15 characters
0

Wildcards are limited to one level (ungreedy), for additional levels add additional pod pages:

test/*
test/*/*
test/*/*/*

answered Apr 20 '11 at 7:03

sc0ttkclark

2936

edited Apr 20 '11 at 7:04

add comment
enter at least 15 characters