web-dev-qa-db-ja.com

保留中のアイテムの複数のCPTメニューに更新風の通知バブルを追加する

[プラグイン]または[コメント]メニュー項目にそれぞれ更新と未承認のコメントの吹き出しとしてこれらの番号通知が表示されるのと同じように、私はその吹き出しを使用して[保留中のレビュー]ステータスのCPTの数を表示します。それをどうやって行けばいいの?

私は このスレッド を見つけました、しかしそこからどこへ行くべきかよくわかりません。

それは持っているのがいいでしょう。ユーザー作成のコンテンツ(カスタム投稿タイプ)を使用するサイトでこの機能が必要なので。ユーザーが新しいCPTを送信するたびに、そのステータスは "レビュー待ち"に設定されます。サイト管理者はメニューをすばやく確認して、いくつのアイテムに注意が必要かを確認できます。

編集: このコードがあります。

// buuble notifications for custom posts with status pending
add_action( 'admin_menu', 'add_pending_bubble' );

function add_pending_bubble() {
    global $menu;

    $custom_post_count = wp_count_posts('custom-post-name');
    $custom_post_pending_count = $custom_post_count->pending;

    if ( $custom_post_pending_count ) {
        foreach ( $menu as $key => $value ) {
            if ( $menu[$key][2] == 'edit.php?post_type=custom-post-name' ) {
                $menu[$key][0] .= ' <span class="update-plugins count-' . $custom_post_pending_count . '"><span class="plugin-count">' . $custom_post_pending_count . '</span></span>';
                return;
            }
        }
    }
}

...少し矛盾していますが、これはうまくいきます。時々表示されますが時々表示されません。また、複数のCPTがある場合、それらのCPTの各メニュー項目にこのコードをどのように適用すればよいですか。上記のコードは1つのCPTでのみ機能します。

9
Hassan

私はこの作業を投稿タイプのリストを繰り返し処理し、($menuオブジェクトを手動で繰り返すのではなく)2次関数を使用して、投稿タイプの正しい$menuキーを正確に指定しました。

pending posts bubbles

関数参照: get_post_types および wp_count_posts

add_action( 'admin_menu', 'pending_posts_bubble_wpse_89028', 999 );

function pending_posts_bubble_wpse_89028() 
{
    global $menu;

    // Get all post types and remove Attachments from the list
    // Add '_builtin' => false to exclude Posts and Pages
    $args = array( 'public' => true ); 
    $post_types = get_post_types( $args );
    unset( $post_types['attachment'] );

    foreach( $post_types as $pt )
    {
        // Count posts
        $cpt_count = wp_count_posts( $pt );

        if ( $cpt_count->pending ) 
        {
            // Menu link suffix, Post is different from the rest
            $suffix = ( 'post' == $pt ) ? '' : "?post_type=$pt";

            // Locate the key of 
            $key = recursive_array_search_php_91365( "edit.php$suffix", $menu );

            // Not found, just in case 
            if( !$key )
                return;

            // Modify menu item
            $menu[$key][0] .= sprintf(
                '<span class="update-plugins count-%1$s" style="background-color:white;color:black"><span class="plugin-count">%1$s</span></span>',
                $cpt_count->pending 
            );
        }
    }
}

// http://www.php.net/manual/en/function.array-search.php#91365
function recursive_array_search_php_91365( $needle, $haystack ) 
{
    foreach( $haystack as $key => $value ) 
    {
        $current_key = $key;
        if( 
            $needle === $value 
            OR ( 
                is_array( $value )
                && recursive_array_search_php_91365( $needle, $value ) !== false 
            )
        ) 
        {
            return $current_key;
        }
    }
    return false;
}
12
brasofilo