List of features to be used in $feature:
add_theme_support( 'post-formats', array( 'formatone', 'formattwo' ) );
add_theme_support( 'post-thumbnails', array( 'post' ) );
The above code only allows post thumnails on all posts. To enable the feature on all post types, do:
add_theme_support( 'post-thumbnails' );
| Parameter | Details |
|---|---|
| $feature | (string) The feature being added. |