Code below is designed for testing to see if current post is in a category that is an ancestor (child/grandchild/greatgrandchild etc) of cat number 526
$cats = wp_get_post_categories();
if (cat_is_ancestor_of($cats[0],526)) {
echo "yes this works" ;
}
Not sure why this isnt working but likely something stupidly simple....
TIA