function my_get_wpdm_post_count() {
    $cache_key = 'my_wpdm_post_count';
    $post_count = wp_cache_get( $cache_key );
    
    if ( false === $post_count ) {
        global $wpdb;
        $post_count = $wpdb->get_var(
            "SELECT COUNT(*) FROM {$wpdb->posts} WHERE post_type = 'wpdmpro' AND post_author = 1 AND post_status IN ('publish', 'private')"
        );
        wp_cache_set( $cache_key, $post_count );
    }
    
    return $post_count;
}