カスタム投稿タイプの記事数をダッシュボードに表示させる Ads X Bluesky Misskey はてブ 2016.11.30 Code <?php add_action( 'dashboard_glance_items', 'add_custom_post_dashboard_widget' ); function add_custom_post_dashboard_widget() { $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>'; } } ?> Screen shot Note Description カスタム投稿タイプの記事数をダッシュボードに表示。 WordPress Ver. 4.8.3 Via WordPress:カスタム投稿タイプの投稿数をダッシュボードの概要に表示する方法+α