Skip to content

Adakah tag conditional khusus untuk page (parent) sekaligus child atau partnya? #278

Discussion options

You must be logged in to vote

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; ?>

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by taufik-nurrohman
Comment options

You must be logged in to vote
2 replies
@taufik-nurrohman
Comment options

@bungfrangki
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
x.page Page extension.
2 participants