Contao:前端 - 获取另一页的主题部分 - 而不是当前页面

时间:2015-01-14 11:22:43

标签: php contao

我需要按页面ID(或PageModel对象)到达自定义部分,但我找不到获取FrontendTemplate的方法。我想在下拉导航中使用它来回显悬停(父)页面的自定义部分。

1 个答案:

答案 0 :(得分:0)

如果有人会搜索,答案是:

<?php
    $articles = \ArticleModel::findPublishedByPidAndColumn($id, $column_name);
    echo static::getArticle($articles[0]); // for ex. the first article
?>