Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save salehahmadbabu/cd9ec58a541cdbf66b43d6a0cf9b27fb to your computer and use it in GitHub Desktop.
Save salehahmadbabu/cd9ec58a541cdbf66b43d6a0cf9b27fb to your computer and use it in GitHub Desktop.
add_filter( 'wp_nav_menu_items', 'wbtheme_custom_menu_item', 10, 2 );
function wbtheme_custom_menu_item ( $items, $args ) {
if ( $args->menu == 'Main Menu') {
$items .= '<li><a href="callto:'.get_field('number', 'option').'" class="menu-bttn">'.get_field('number', 'option').'</a></li>';
}
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment