Skip to content

Instantly share code, notes, and snippets.

@rodrigoea
rodrigoea / gist:c853a1f89156147fd93c
Created November 10, 2014 18:58
Show bubble notification in Wordpress Menu
add_filter( 'add_menu_classes', 'show_pending_number');
function show_pending_number( $menu ) {
$type = "post_type";
$status = "draft";
$num_posts = wp_count_posts( $type, 'readable' );
$pending_count = 0;
if ( !empty($num_posts->$status) )
$pending_count = $num_posts->$status;
// build string to match in $menu array