Tutorial by Examples

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' );

Page 1 of 1