Skip to content

Instantly share code, notes, and snippets.

@spencejs
Last active December 16, 2015 04:29
Show Gist options
  • Save spencejs/5377352 to your computer and use it in GitHub Desktop.
Save spencejs/5377352 to your computer and use it in GitHub Desktop.
Insert Custom HTML Into Wordpress Menu
//Insert Icon Links Into Menu
add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );
function your_custom_menu_item ( $items, $args ) {
if ($args->theme_location == 'primary_navigation') {
$items .= '<li><a href="http://alarmpress.com" class="icon-alone">
<span aria-hidden="true" class="icon-alarmpress_icon"></span>
<span class="screen-reader-text">ALARM Press</span>
</a></li>';
}
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment