Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created February 23, 2012 14:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasgriffin/1893164 to your computer and use it in GitHub Desktop.
Save thomasgriffin/1893164 to your computer and use it in GitHub Desktop.
add_filter( 'wp_nav_menu_objects', 'tgm_filter_nav_menu', 10, 2 );
function tgm_filter_nav_menu( $objects, $args ) {
echo '<pre>' . print_r( $objects, true ) . '</pre>';
echo '<pre>' . print_r( $args, true ) . '</pre>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment