我尝试开发两个过滤器,它们根据答案的数量和喜欢的数量对 groupforumtopics 列表进行排序。我知道函数:countAnnotations('likes') 和 countComments(),但我不知道如何使用它们。我使用一个开关盒,并根据输入创建 $options 数组。
$options = array(
'type' => 'object',
'subtype' => 'groupforumtopic',
'limit' => 10,
'container_guid' => $guid,
'full_view' => FALSE,
);
$content = elgg_list_entities($options);
有人有提示或更好的解决方案吗?