Example #1
0
/**
 * Append icon to a menu item
 *
 * @since 1.6.8
 *
 * @param string $title
 * @param string $id
 *
 * @return string
 */
function themify_add_menu_icon($title, $id = '')
{
    if ('' != $id) {
        if ($icon = themify_get_menu_icon($id)) {
            $title = '<i class="fa ' . esc_attr(themify_get_fa_icon_classname($icon)) . '"></i> ' . $title;
        }
    }
    return $title;
}
Example #2
0
/**
 * Append icon to a menu item
 *
 * @since 1.6.8
 */
function themify_add_menu_icon($title, $id)
{
    if ($icon = themify_get_menu_icon($id)) {
        $title = '<i class="fa ' . $icon . '"></i> ' . $title;
    }
    return $title;
}