Exibição de tipos de postagem personalizados na caixa Meta "de relance"


8

Descobri que o seguinte snippet exibe o número de tipos de postagem personalizados publicados no widget At A Glance do Dashboard, assim:

Num relance

Existe uma maneira de transformar esse texto "81 lutadores" em um link para a lista de tipos de postagem. Aqui está o código:

add_filter( 'dashboard_glance_items', 'custom_glance_items', 10, 1 );
function custom_glance_items( $items = array() ) {
    $post_types = array( 'wrestler' );
    foreach( $post_types as $type ) {
        if( ! post_type_exists( $type ) ) continue;
        $num_posts = wp_count_posts( $type );
        if( $num_posts ) {
            $published = intval( $num_posts->publish );
            $post_type = get_post_type_object( $type );
            $text = _n( '%s ' . $post_type->labels->singular_name, '%s ' . $post_type->labels->name, $published, 'your_textdomain' );
            $text = sprintf( $text, number_format_i18n( $published ) );
            if ( current_user_can( $post_type->cap->edit_posts ) ) {
                $items[] = sprintf( '%2$s', $type, $text ) . "\n";
            } else {
                $items[] = sprintf( '%2$s', $type, $text ) . "\n";
            }
        }
    }
    return $items;
}

Respostas:


8

Aqui está a função que eu uso para exibir CPT no widget "De relance"

add_action( 'dashboard_glance_items', 'cpad_at_glance_content_table_end' );
function cpad_at_glance_content_table_end() {
    $args = array(
        'public' => true,
        '_builtin' => false
    );
    $output = 'object';
    $operator = 'and';

    $post_types = get_post_types( $args, $output, $operator );
    foreach ( $post_types as $post_type ) {
        $num_posts = wp_count_posts( $post_type->name );
        $num = number_format_i18n( $num_posts->publish );
        $text = _n( $post_type->labels->singular_name, $post_type->labels->name, intval( $num_posts->publish ) );
        if ( current_user_can( 'edit_posts' ) ) {
            $output = '<a href="edit.php?post_type=' . $post_type->name . '">' . $num . ' ' . $text . '</a>';
            echo '<li class="post-count ' . $post_type->name . '-count">' . $output . '</li>';
        }
    }
}

Isso torna o texto clicável como link. Espero que isto ajude


Mas está mostrando todos os tipos de post personalizados, e eu só quero exibir o tipo de post "Wrestler".
Hardeep Asrani 22/03

Eu editei o seu código e misturei com o meu e funcionou :) Obrigado!
Hardeep Asrani 22/03

@Hardeep Asrani feliz por poder ajudar. Seria ótimo se você pudesse adicionar seu código como resposta.
Pieter Goosen

@PieterGoosen Provavelmente é um tiro no escuro, mas estou procurando obter a caixa "De relance" para exibir o Dashicon certo ( developer.wordpress.org/resource/dashicons ). Qualquer ideia?
user2019515

Isso realmente ajudou ... Agora, alguma idéia de como posso exibi-los com seus próprios ícones? Estou tentando adicionar a classe dashicon na saída ... $output = '<a class="' . $post_type->menu_icon . '" href="edit.php?post_type=' . $post_type->name . '">' . $num . ' ' . $text . '</a>';... mas há estilos que a substituem, então tentei adicionar este estilo: #dashboard_right_now li a::before, #dashboard_right_now li > span::before { content: initial; }... mas isso substitui o estilo de classe dashicon. Por favor informar.
juliusbangert

2

Ok, então eu usei esse código para exibir apenas o tipo de postagem "wrestler" e funcionou. Misturei o meu e o código de Pieter Goosen para obter isso:

add_filter( 'dashboard_glance_items', 'custom_glance_items', 10, 1 );
function custom_glance_items( $items = array() ) {
    $post_types = array( 'wrestler' );
    foreach( $post_types as $type ) {
        if( ! post_type_exists( $type ) ) continue;
        $num_posts = wp_count_posts( $type );
        if( $num_posts ) {
            $published = intval( $num_posts->publish );
            $post_type = get_post_type_object( $type );
            $text = _n( '%s ' . $post_type->labels->singular_name, '%s ' . $post_type->labels->name, $published, 'your_textdomain' );
            $text = sprintf( $text, number_format_i18n( $published ) );
            if ( current_user_can( $post_type->cap->edit_posts ) ) {
            $output = '<a href="edit.php?post_type=' . $post_type->name . '">' . $text . '</a>';
                echo '<li class="post-count ' . $post_type->name . '-count">' . $output . '</li>';
            } else {
            $output = '<span>' . $text . '</span>';
                echo '<li class="post-count ' . $post_type->name . '-count">' . $output . '</li>';
            }
        }
    }
    return $items;
}

0

No código que você postou, eu realmente não consigo entender qual é o objetivo:

if ( current_user_can( $post_type->cap->edit_posts ) ) {
  $items[] = sprintf( '%2$s', $type, $text ) . "\n";
} else {
  $items[] = sprintf( '%2$s', $type, $text ) . "\n";
}

Ou seja, se o usuário atual pode editar o tipo de postagem, faça algo, caso contrário, faça a mesma coisa ...

Eu acho que você deseja mostrar o link para a lista de postagens se o usuário atual puder editar o tipo de postagem (assim como o WordPress faz para páginas e postagens).

Nesse caso, seu código se torna:

function custom_glance_items( $items = array() ) {
  $post_types = array( 'wrestler' );
  foreach( $post_types as $type ) {
    if( ! post_type_exists( $type ) ) continue;
    $num_posts = wp_count_posts( $type );
    if( $num_posts ) {
      $published = intval( $num_posts->publish );
      $post_type = get_post_type_object( $type );
      $text = _n(
        '%s ' . $post_type->labels->singular_name,
        '%s ' . $post_type->labels->name,
        $published,
        'your_textdomain'
      );
      $text = sprintf( $text, number_format_i18n( $published ) );

      // show post type list id user can edit the post type,
      // otherwise just swho the name and the count
      if ( current_user_can( $post_type->cap->edit_posts ) ) {
        $edit_url = add_query_arg( array('post_type' => $type),  admin_url('edit.php') );
        $items[] = sprintf( '<a href="%s">%s</a>', $edit_url, $text ) . "\n";
      } else {
        $items[] = $text . "\n";
      }

    } // end if( $num_posts )
  } // end foreach
  return $items;
}

Não está funcionando no meu caso.
Hardeep Asrani

0

Para todas as ocorrências futuras, da adição de tipos de postagem personalizados à caixa 'De relance', o código a seguir funcionou para mim no WordPress 4.6.1. E isso pode funcionar para outros.

// Add custom taxonomies and custom post types counts to dashboard
    add_action( 'dashboard_glance_items', 'cpt_to_at_a_glance' );
function cpt_to_at_a_glance() {
        // Custom post types counts
        $post_types = get_post_types( array( '_builtin' => false ), 'objects' );
        foreach ( $post_types as $post_type ) {
            $num_posts = wp_count_posts( $post_type->name );
            $num = number_format_i18n( $num_posts->publish );
            $text = _n( $post_type->labels->singular_name, $post_type->labels->name, $num_posts->publish );
            if ( current_user_can( 'edit_posts' ) ) {
                $num = '<li class="post-count"><a href="edit.php?post_type=' . $post_type->name . '">' . $num . ' ' . $text . '</a></li>';
            }
            echo $num;
        }
    }

Todo o crédito vai para o seguinte autor

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.