I have an array of products and i need to remove all of them which have a reference to webinar
The PHP version I am using is 5.2.9
$category->products
example:
[6] => stdClass Object
(
[pageName] => another_title_webinar
[title] => Another Webinar Title
)
[7] => stdClass Object
(
[pageName] => support_webinar
[title] => Support Webinar
)
[8] => stdClass Object
(
[pageName] => support
[title] => Support
)
In this case number 8 would be left but the other two would be stripped...
Could anyone help?