×

添加待审核文章数量气泡提醒到 WordPress 文章菜单-类似主题插件升级或评论提醒

优畅主题 Wordpress技术 2016-10-28 10:07 3,827 0 条评论

在为 WordPress 开发的时候,优畅主题的爆料功能,爆料后文章处于待审核,但是管理员一般在后台不知道,没有提醒功能,这时候我们需要添加一些消息提醒到后台菜单,类似主题插件升级或待审核评论提醒,可是 WordPress 并没有我们提供这样的接口,研究了一些已经实现了类似功能的插件,在网上研究了很久,发现实现这个功能。

 

add_filter( 'add_menu_classes', 'uctheme_show_pending_number');
function uctheme_show_pending_number( $menu ) {
    $type = "book"; //自定义文章类型
    $status = "pending";
    $num_posts = wp_count_posts( $type, 'readable' );
    $pending_count = 0;
    if ( !empty($num_posts->$status) )
        $pending_count = $num_posts->$status;

    // 需要添加提醒的菜单项目
    if ($type == 'post') {
        $menu_str = 'edit.php';
    // 支持自定义文章类型
    } else {
        $menu_str = 'edit.php?post_type=' . $type;
    }

    // 遍历菜单,找到需要添加的菜单项目,添加提醒
    foreach( $menu as $menu_key => $menu_data ) {
        if( $menu_str != $menu_data[2] )
            continue;
        $menu[$menu_key][0] .= " " . number_format_i18n($pending_count) . '';
    }
    return $menu;
}

如果本文对你有帮助,你可以扫描右边的二维码打赏,谢谢支持
联系优畅:uctheme#qq.com (#改为@)
微信订阅号:优畅主题(uctheme)
官网淘宝店:http://uctheme.taobao.com
版权声明:版权归 优畅主题 所有,转载请注明出处!
转载请保留链接: https://www.uctheme.com/technical/1965.html
谢谢支付宝打赏
谢谢微信打赏

品牌创立:2012-11-18优畅主题

优畅主题成立于2012年11月18日,专业Wordpress导购主题开发商,拥有多年Wordpress主题设计经验,专门为淘宝客和导购客站长量身打造高端赚钱模板,我们注重细节,有着严谨的开发态度,一切从客户角度出发,如果你也喜欢 WordPress导购主题,欢迎和我们一起交流!


9 + 3 = ?

目前还没有评。

切换注册

登录

忘记密码 ?

您也可以使用第三方帐号快捷登录

切换登录

注册