Skip to content

Instantly share code, notes, and snippets.

@xeiter
Created September 28, 2016 00:13
Show Gist options
  • Save xeiter/6b5f6875885e05b6fec3be150788eb27 to your computer and use it in GitHub Desktop.
Save xeiter/6b5f6875885e05b6fec3be150788eb27 to your computer and use it in GitHub Desktop.
Work out the current menu item
<?php
// Get menu items
$menu_items = wp_get_nav_menu_items( 'main-menu' );
// Work out the current menu item
$parent_menu_item_id = current( wp_filter_object_list( $menu_items, array( 'object_id' => get_queried_object_id() ) ) )->ID;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment