File: /home/samfetchero1/pacificnorthwestcoastbias.com/wp-content/themes/maxwell/inc/icons.php
<?php
/**
* SVG icons related functions and filters
*
* @package Maxwell
*/
/**
* Return SVG markup.
*
* @param string $icon SVG icon id.
* @return string $svg SVG markup.
*/
function maxwell_get_svg( $icon = null ) {
// Return early if no icon was defined.
if ( empty( $icon ) ) {
return;
}
// Create SVG markup.
$svg = '<svg class="icon icon-' . esc_attr( $icon ) . '" aria-hidden="true" role="img">';
$svg .= ' <use xlink:href="' . get_parent_theme_file_uri( '/assets/icons/genericons-neue.svg#' ) . esc_html( $icon ) . '"></use> ';
$svg .= '</svg>';
return $svg;
}
/**
* Add dropdown icon if menu item has children.
*
* @param string $title The menu item's title.
* @param object $item The current menu item.
* @param array $args An array of wp_nav_menu() arguments.
* @param int $depth Depth of menu item. Used for padding.
* @return string $title The menu item's title with dropdown icon.
*/
function maxwell_dropdown_icon_to_menu_link( $title, $item, $args, $depth ) {
if ( 'primary' === $args->theme_location || 'secondary' === $args->theme_location ) {
foreach ( $item->classes as $value ) {
if ( 'menu-item-has-children' === $value || 'page_item_has_children' === $value ) {
$title = $title . maxwell_get_svg( 'expand' );
}
}
}
return $title;
}
add_filter( 'nav_menu_item_title', 'maxwell_dropdown_icon_to_menu_link', 10, 4 );