New to ProcessWire and seriously loving it. I'm also relatively new to PHP (there is my disclaimer!). I am trying to come up with the following PHP statement to find related pages. I would like to find all pages where "some_field" contains the page title of the current page. So the statement might look something like this:
<?php $matches = $pages->find("some_field *= title of the current page"); ?>
Greatly appreciate any nudge in the right direction. Thanks.