Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /** Add description to secondary navigation */
  2. add_filter( 'walker_nav_menu_start_el', 'add_description', 10, 4 );
  3. function add_description( $item_output, $item, $depth, $args ) {
  4.  
  5.         $args = (array) $args;
  6.        
  7.         if ( $args['theme_location'] != 'primary' )  {
  8.                 return preg_replace( '/(<a.*?>[^<]*?)</', '$1' . "<span class=\"menu-description\">{$item->post_content}</span><", $item_output );
  9.         }
  10.         else {
  11.                 return $item_output;
  12.         }
  13.  
  14. }