0

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

4

1 回答 1

0

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

<?php
    $articles = \ArticleModel::findPublishedByPidAndColumn($id, $column_name);
    echo static::getArticle($articles[0]); // for ex. the first article
?>
于 2015-01-14T13:31:21.727 回答