Skip to content

Instantly share code, notes, and snippets.

@wpjess
Created April 23, 2020 18:32
Show Gist options
  • Save wpjess/c629838af5760baa004da67e4359acb9 to your computer and use it in GitHub Desktop.
Save wpjess/c629838af5760baa004da67e4359acb9 to your computer and use it in GitHub Desktop.
WP page slug as menu ID
/////////////////////////////////////////////////////////////////
/// PAGE SLUG AS MENU ITEM ID
/////////////////////////////////////////////////////////////////
function cleanname($v) {
$v = preg_replace('/[^a-zA-Z0-9s]/', '', $v);
$v = str_replace(' ', '-', $v);
$v = strtolower($v);
return $v;
}
function nav_id_filter( $id, $item ) {
return 'nav-'.cleanname($item->title);
}
add_filter( 'nav_menu_item_id', 'nav_id_filter', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment