Skip to content

Instantly share code, notes, and snippets.

@sang4lv
Created July 11, 2013 09:43
Show Gist options
  • Save sang4lv/5974081 to your computer and use it in GitHub Desktop.
Save sang4lv/5974081 to your computer and use it in GitHub Desktop.
add_filter( 'walker_nav_menu_start_el', 'antu_modify_menu', 10, 2 );
function antu_modify_menu( $output, $item ) {
if($item->url == "#") {
$link = get_latest_post($item->xfn);
$output = str_replace('href="#"', 'href="' . $link . '"', $output);
return $output;
} else {
return $output;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment