Enable All Possible Post Formats

Chris Coyier on

For your functions.php file in the theme.

add_theme_support( 'post-formats',	array(	'aside',	'gallery',	'link',	'image',	'quote',	'status',	'video',	'audio',	'chat'	) ); add_post_type_support( 'post', 'post-formats' ); add_post_type_support( 'page', 'post-formats' ); // and other custom post types if you have them