Adakah tag conditional khusus untuk page (parent) sekaligus child atau partnya? #278
-
Misalnya saya punya page dan sub-page seperti ini:
Dan pada html saya ingin menampilkan informasi yg sama pada parent-page (superheroes) dan childnya, misalnya seperti ini:
apakah ada tag kondisi seperti itu? sehingga saya tidak perlu menuliskan informasi repetitif pada halaman2 tersebut. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Mungkin begini: <?php if ('superheroes' === $page->name || ($page->parent && 'superheroes' === $page->parent->name)): ?>
<!-- Info superhero di sini... -->
<?php endif; ?> Atau begini: <?php if (str_starts_with($url->path . '/', '/superheroes/')): ?>
<!-- Info superhero di sini... -->
<?php endif; ?> |
Beta Was this translation helpful? Give feedback.
-
terima kasih mas, berhasil diterapkan. maaf mas, tambah 1 pertanyaan lagi yaa. |
Beta Was this translation helpful? Give feedback.
Mungkin begini:
Atau begini: