Skip to content

Instantly share code, notes, and snippets.

@oliwa
Last active March 14, 2025 21:17
Show Gist options
  • Save oliwa/4d7047a518fde5855f1a2f827f5fa203 to your computer and use it in GitHub Desktop.
Save oliwa/4d7047a518fde5855f1a2f827f5fa203 to your computer and use it in GitHub Desktop.
pages submenu with active current page
<?php global $id;
$args = array(
'child_of' => 39,
'sort_column' => 'menu_order',
'post_type' => 'page',
);
$pages = get_pages($args); ?>
<ul class="submenu">
<?php foreach ( $pages as $page ) { ?>
<li class="<?php if (is_page($page->ID)) echo 'current_page_item'; ?>"><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title; ?>, <?php echo $page->member_group; ?></a></li>
<?php } ?>
<?php wp_reset_postdata(); ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment