Hi, I'm developing a Wordpress plugin and I need to have a menu counter as the ones present in "comments" or "plugins" menu (i.e. 'Comments [10]', 10 is the "awaiting moderation" comments).
I use this code to have new menu in wp-admin:
add_menu_page('MyMenu', 'MyMenu', 8, 'mymenu_func', 'mymenu_func', 'mymenu_icon.png');
Anyone can help me?