Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save richardsweeney/794f6446447f482552f9 to your computer and use it in GitHub Desktop.
Save richardsweeney/794f6446447f482552f9 to your computer and use it in GitHub Desktop.
get current menu item classes from page ID
<?php
add_filter( 'nav_menu_css_class' , 'get_nav_classes' , 10 , 2 );
function get_nav_classes( $classes, $item ) {
global $post;
if ( 'page' != get_post_type() ) {
return $classes;
}
$link_page_id = get_post_meta( $item->ID, '_menu_item_object_id', true );
if ( $post->ID == $link_page_id ) {
// Gotcha!
}
}
return $classes;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment