现在,如果节点类型是文章。在术语页面的左侧,我想显示最近 10 篇文章的标题,节点类型为文章。我不想使用视图,我该怎么办?谢谢你。
如果我想在节点页面的左侧显示最新的 10 篇文章的标题,哪个节点类型是文章。如何编写查询。非常感谢。
ps:我发现EntityFieldQuery 可能可以做到这一点,但我现在不知道该怎么做。
我的代码:
$query = new EntityFieldQuery();
$query
->entityCondition('entity_type', 'node')
->entityCondition('bundle', 'article')
->propertyCondition('status', 1)
->propertyOrderBy('created', 'DESC')
->range(0, 10);
$result = $query->execute();