concrete5 逆引きリファレンス
親ページのIDを取得する
2021/04/25 17:42
現在のページの親ページのページIDを取得する。
親ページのIDを取得する
$page->getCollectionParentID();
親ページの名称を取得してリンクを追加します。
<?php
$page = \Page::getCurrentPage();
$parentPage = Page::getByID($page->getCollectionParentID());
?>
<a href="<?php echo $parentPage->getCollectionPath() ?>">
<?php echo $parentPage->getCollectionName();?>
</a>
ページIDを取得すれば、ページオブジェクトの取得と同じオブジェクトを取得して、ページの標準プロパティを取得する事が可能になります。
New Content
2021/07/02 16:59
2021/06/23 21:58
2021/06/22 22:01
2021/06/17 22:38
2021/06/15 22:00