Okay… this must be the most basic question ever, but I’ve never dealt with it before…
Imagine this is my content-folder / site-setup;
/1-home
home.txt
/2-about
about.txt
How do I get a field-value (e.g. “intro” which contains a introduction-text) from home.txt on the about-page?
I tried several syntaxes, none of them did work…
echo $page->find('home')->intro()->kt();
echo $page('home')->intro()->kt;
It’s easy to parse the value from a field, directly linked to that page - but how do you fetch / query values from other pages?