Hello-
I am currently using <?php $thisPage="PageName"; ?> to help indicate which page you are on in my navigation- it also pulls on an "if" statement that will show second level navigation, so that 'if on PageName, show these three other links'.
Because I have that secondary navigation, however, I was wondering if it is possible, to give multiple $thisPage page names to a document- So that it was something like this: <?php $thisPage="PageName", "PageName2", "PageName3"; ?> so that I can then use if statments to further manipulate the code, as opposed to having the entire code block repeated for each page when only slight manipulation was needed (the actual code itself is in a navigation.php include, and would have to be repeated multiple times in that document for each secondary navigation link)
Thanks in advance!
Nate