In my functions.php
I have the following:
add_theme_support( 'post-thumbnails', 'html5', array( 'comment-list', 'comment-form', 'search-form' ) );
…which in WP 3.8.1 disables e.g. featured image (i.e. post-thumbnails
).
My question is how to properly format all these support items in the add_theme_support
function; is adding two separate function calls right or ‘wrong’?
add_theme_support( 'post-thumbnails' );
add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form' ) );