4

Is there a way to get all Parent IDs from a subpage via php?

...
Page
Page 12
    Subpage 21
    Subpage 22
        CurrentPage 23

Want to get 12,21

lorenz
  • 4,538
  • 1
  • 27
  • 45
anguish
  • 458
  • 1
  • 7
  • 27

1 Answers1

6

See the $GLOBALS['TSFE']->rootLine array.

it's indexed in natural order, which means, the 0 index is root page and last element is your current position.

So in your case it will be: 0=>12, 1=>22, 2=>23

Sorry initialy gave wrong description

biesior
  • 55,576
  • 10
  • 125
  • 182