Hi
Many of my image tags are hypehenated - which is currently causing problems finding them using the API.
For example - say I have an image with tags 'sport-1', using the example provided on the pw site but adding a hyphen to the tag:
// Find pages containing an image with at least tag: sport-1 // This will match "sport" but not "sports". $mypages = $pages->find("images.tags~=sport-1");
This doesn't return the page.
$mypages = $pages->find("images.tags=sport-1"); does return the page.
But if the image has multiple tags 'sport-1 green' for example - you cannot use just the = operator to find the image
So - my question is, how do I find the image with tag 'sport-1' when the image I'm looking for has tags 'sport 1 green';
Many thanks
Nik