Add a Span To WordPress Navigation Menu Items

// Filter wp_nav_menu() to add an additional span element
function span_nav_menu_items($items) {
	return preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span>$3</span></a>',$items);
}
add_filter( 'wp_nav_menu_items', 'span_nav_menu_items' );

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="" highlight="">