如何向Wordpress管理菜单添加通知气泡

Sam*_*jee 2 wordpress notifications menu

我想在wordpress管理菜单中显示一些关于新帖子的通知,因为我们可以在新的插件更新可用时找到一个黑色圆圈来到插件菜单中,其中有一个数字.

Sam*_*yay 8

编辑主题的function.php并附加这些代码行 -

add_action('admin_menu', 'notification_bubble_in_admin_menu');

function notification_bubble_in_admin_menu() {
    global $menu;
    $newitem = get_number_of_new_post_by_type('post');
    $menu[11][0] .= $newitem ? "<span class='update-plugins count-1'><span class='update-count'>$newitem </span></span>" : '';
}

function get_number_of_new_post_by_type($type)
{
    global $wpdb;
    return $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}withdraw WHERE wd_status=0;" ) );
}
Run Code Online (Sandbox Code Playgroud)