Skip to content

Instantly share code, notes, and snippets.

@kodie
Created August 21, 2020 16:39
Show Gist options
  • Save kodie/014f3722febede44943ffa5e85c52b30 to your computer and use it in GitHub Desktop.
Save kodie/014f3722febede44943ffa5e85c52b30 to your computer and use it in GitHub Desktop.
Adds an SVG inside of page nav items when using wp_nav_menu() in WordPress
<?php
// Adds an SVG inside of page nav items when using wp_nav_menu()
add_filter('wp_nav_menu_objects', 'nav_add_icons', 10, 2);
function nav_add_icons($items, $args) {
if ($args->menu->slug === 'header-navigation') {
foreach ($items as $item) {
if ($item->object === 'page') {
$slug = get_post_field('post_name', $item->object_id);
$icon = get_stylesheet_directory_uri() . "/img/svg/nav-$slug.svg";
$item->title = "<img src='$icon' class='style-svg' /><span>{$item->title}</span>";
}
}
}
return $items;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment