Skip to content

Instantly share code, notes, and snippets.

@crossreftech
Last active August 29, 2015 13:56
Show Gist options
  • Save crossreftech/9203816 to your computer and use it in GitHub Desktop.
Save crossreftech/9203816 to your computer and use it in GitHub Desktop.
<?php
// Add Custom Post Type to At A Glance Dashboard Widget
function add_post_type_to_right_now() {
$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->name, $post_type->labels->name , intval( $num_posts->publish ) );
if ( current_user_can( 'edit_posts' ) ) {
$cpt_name = $post_type->name;
}
echo '<li class="post-count"><tr><a href="edit.php?post_type='.$cpt_name.'"><td class="first b b-' . $post_type->name . '"></td>' . $num . '&nbsp;<td class="t ' . $post_type->name . '">' . $text . '</td></a></tr></li>';
}
}
add_action( 'dashboard_glance_items' , 'add_post_type_to_right_now' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment