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を取得すれば、ページオブジェクトの取得と同じオブジェクトを取得して、ページの標準プロパティを取得する事が可能になります。