Skip to content

Instantly share code, notes, and snippets.

@elicohenator
Last active January 31, 2017 16:50
Show Gist options
  • Save elicohenator/fcc7ed57173dbf5f272465ad4c40a18a to your computer and use it in GitHub Desktop.
Save elicohenator/fcc7ed57173dbf5f272465ad4c40a18a to your computer and use it in GitHub Desktop.
Show all custom post types in At A Galnce window @ wordpress
// Add all CPT's to At A Glance
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>';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment