﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
16763,"nav-menu-template.php Does Not Add $class_names to Anchor Tags, Preventing Custom Theming",obiwanmikenolte,,"The $item_output portion of wp-includes/nav-menu-template.php that defines what the a tag will contain doesn't include a class attribute, whereas the ul tag does. This prevents customized theming (e.g. colors, images before/after, etc.) of the menu links. This can be modified by appending $class_names to $item_output's <a line, i.e.
{{{
$item_output .= '<a'. $attributes .'>';
}}}
becomes
{{{
$item_output .= '<a'. $attributes . $class_names .'>';
}}}",enhancement,closed,normal,,Menus,3.1,minor,worksforme,,obiwanmikenolte
