IASP: Theme support
// Register Theme Features
function iasp_theme_features() {
global $wp_version;
// Add theme support for Post Formats
$formats = array( 'gallery', 'video', );
add_theme_support( 'post-formats', $formats );
// Add theme support for Featured Images
add_theme_support( 'post-thumbnails', array( 'post', 'page', 'event' ) );
}
// Hook into the 'after_setup_theme' action
add_action( 'after_setup_theme', 'iasp_theme_features' );