📌  相关文章
📜  在自定义帖子类型子菜单或子自定义帖子类型中添加通知气泡 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:29.510000             🧑  作者: Mango

代码示例1
$notification_count = 2; // here we get the count somehow in the code
 
add_menu_page(
    'Tickets',
    $notification_count ? sprintf( 'Tickets %d', $notification_count ) : 'Tickets',
    'manage_options',
    'tickets_page_slug',
    'tickets_page_handler'
);