WordPress admin add featured image upload capability to the theme

Add the following code to functions.php of the theme:


add_action( ‘after_setup_theme’, ‘ja_theme_setup’ );
function ja_theme_setup() {
add_theme_support( ‘post-thumbnails’);
}