基本上最简单的事情应该是回调start_el()
Walker类的方法。
// From core:
apply_filters( \'walker_nav_menu_start_el\', $item_output, $item, $depth, $args );
只需抓取数据(无论实际数据是什么,来自哪里)并附加它。
add_action( \'walker_nav_menu_start_el\', \'wpse_10042_nav_menu_post_count\', 10, 4 );
function wpse_10042_nav_menu_post_count( $output, $item, $depth, $args )
{
// Check $item and get the data you need
printf( \'<pre>%s</pre>\', var_export( $item, true ) );
// Then append whatever you need to the $output
$output .= \'\';
return $output;
}