I want to access content type description in custom template file of Drupal7 website. In this template file I'm showing list of content. On top of that list now i want to display description also for that content type.
Content type name is accessible using this. Is there any way to access the description also?
$types = node_type_get_names('names');
Found this in drupal forum but node_get_types function is throwing error.
$types = node_get_types();
print $types['blog']->description;