2016-03-05, 08:20:59
(2016-03-05, 07:19:34)Timbow Wrote: For some reason I get the component on all pages with that. I can check the variable is empty with print $parent (and it is). Using
Because $parent is of type object, you should cast it to a string:
Code:
$parent = (string) get_parent(false);
if(!empty($parent)) {
...
}