Where is a custom post type’s “description” surfaced in WordPress?

There’s not really a good usage of the description in WP. However, if you wish to extend the WordPress functionality and use the description in your theme or plugins, it’s available to you with the following:

global $wp_post_types;
$post_type="my_cpt";
$description = $wp_post_types[$post_type]->description;

Leave a Comment