Changes between Initial Version and Version 5 of Ticket #10902
- Timestamp:
- 08/17/2013 12:56:55 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10902
- Property Keywords reporter-feedback added; wp_list_pages removed
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
invalid
-
Property
Milestone
changed from
Unassigned
to
-
Ticket #10902 – Description
initial v5 1 Create pages A,B,C and D, A parent of B, B of C and C of D[[BR]] 2 A[[BR]] 3 -B[[BR]] 4 --C[[BR]] 5 ---D[[BR]] 6 1 Create pages A,B,C and D, A parent of B, B of C and C of D 2 {{{ 3 A 4 -B 5 --C 6 ---D 7 }}} 7 8 call in a template 9 {{{ 8 10 <?php wp_list_pages("exclude=6"); ?> 11 }}} 9 12 (6 is the ID of page B) 10 13 11 I get this display :[[BR]] 12 * A[[BR]] 13 * C[[BR]] 14 * D[[BR]] 15 16 when I expect :[[BR]] 17 * A[[BR]] 18 * C[[BR]] 19 -* D[[BR]] 14 I get this display: 15 {{{ 16 * A 17 * C 18 * D 19 }}} 20 when I expect: 21 {{{ 22 * A 23 * C 24 -* D 25 }}}