Skip to content

Instantly share code, notes, and snippets.

@nicomollet
Created July 25, 2017 13:05
Show Gist options
  • Save nicomollet/91f6da31c918598aa935b03c230c2d01 to your computer and use it in GitHub Desktop.
Save nicomollet/91f6da31c918598aa935b03c230c2d01 to your computer and use it in GitHub Desktop.
Replace Home menu item by home icon
<?php
/**
* Replace Home menu item by home icon
*
* @param $sorted_menu_items
*
* @return mixed
*/
function homeicon_nav_menu_objects( $sorted_menu_items )
{
foreach ( $sorted_menu_items as $item ) {
if(untrailingslashit($item->url) == untrailingslashit(home_url())){
$item->title = '';
$item->attr_title = 'glyphicon-home';
}
}
return $sorted_menu_items;
}
add_filter( 'wp_nav_menu_objects', 'homeicon_nav_menu_objects' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment