I need to be able to get returned the names of all OG groups to which the current node has been posted. In researching it I found the following code, but it returns nothing. Note that I did add the opening and closing PHP tags in my actual code. Can someone offer some guidance. Thanks.


$group_links = array();
foreach ($node->og_groups_both as $key => $name) {
$group_links[] = l($name,'node/'.$key,array('class'=>'group'));
                    }
$group_links = implode(', ',$group_links);

print ($group_links);
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.