Noel Boss Posted March 26, 2019 Posted March 26, 2019 Hi, anyone knows why this does not work? $pages->find('parent|id='.$page); Unless I miss something, this should find all children plus the current page, but it only finds children. I would like to use it as $expires for cacheing stuff. How do you expire chaches of the current page and all children?
arjen Posted March 26, 2019 Posted March 26, 2019 Not really sure, but have you tried: $all = $pages->find('parent_id|id=' . $page->id); or you can always add it to the Pagearray using the add method: $all = $pages->find("parent={$page}")->add($page);
Robin S Posted March 26, 2019 Posted March 26, 2019 Seems like a bug, or something that should be documented if "parent" is a special case for selectors. I opened a GitHub issue: https://github.com/processwire/processwire-issues/issues/838 As an alternative you can use OR-groups: $pages->find("(id=$page), (parent=$page)") 2
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now