Esta é uma dica para quem usa tipos de postagens (custom post types).

Ao adicionar esta função, você poderá ver a contagem e os tipos de postagens na tela inicial do WordPress, na caixa Agora.

Este código vai mostrar todos os tipos, mas é possível modificá-lo para mostrar apenas o tipos que quiser.

Adicione no arquivo functions.php:

// ADICIONE TIPOS DE POSTAGENS A CAIXA "AGORA"
function wph_right_now_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' ) ) {
   $num = "<a href="edit.php?post_type=$post_type-&gt;name">$num</a>";
   $text = "<a href="edit.php?post_type=$post_type-&gt;name">$text</a>";
  }
  echo '&lt;tr&gt;&lt;td&gt;' . $num . '&lt;/td&gt;';
  echo '&lt;td&gt;' . $text . '&lt;/td&gt;&lt;/tr&gt;';
 }
 $taxonomies = get_taxonomies( $args , $output , $operator ); 
 foreach( $taxonomies as $taxonomy ) {
  $num_terms  = wp_count_terms( $taxonomy-&gt;name );
  $num = number_format_i18n( $num_terms );
  $text = _n( $taxonomy-&gt;labels-&gt;singular_name, $taxonomy-&gt;labels-&gt;name , intval( $num_terms ));
  if ( current_user_can( 'manage_categories' ) ) {
   $num = "<a href="edit-tags.php?taxonomy=$taxonomy-&gt;name">$num</a>";
   $text = "<a href="edit-tags.php?taxonomy=$taxonomy-&gt;name">$text</a>";
  }
  echo '&lt;tr&gt;&lt;td&gt;' . $num . '&lt;/td&gt;';
  echo '&lt;td&gt;' . $text . '&lt;/td&gt;&lt;/tr&gt;';
 }
}
add_action( 'right_now_content_table_end' , 'wph_right_now_content_table_end' );