Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmelissa brown
4,670 Pointsset featured image option not displaying
ive added the add_theme_support( 'post-thumbnails' ); function but the set featured theme support option is not displaying.
add_theme_support( 'menus' );
add_theme_support( 'post-thumbnails' );
function register_theme_menus() {
register_nav_menus(
array(
'primary-menu' =>__( 'Primary Menu' )
)
);
}
add_action( 'init', 'register_theme_menus' );
function wpt_theme_styles() {
wp_enqueue_style( 'foundation_css', get_template_directory_uri() . '/css/foundation.css' );
wp_enqueue_style( 'normalize_css', get_template_directory_uri() . '/css/normalize.' );
wp_enqueue_style( 'googlefont_css', 'http://fonts.googleapis.com/css?family=Asap:400,700,400italic,700italic' );
wp_enqueue_style( 'main_css', get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'wpt_theme_styles');
function wpt_theme_js() {
wp_enqueue_script( 'modernizr_js', get_template_directory_uri() . '/js/modernizr.js','','', false);
wp_enqueue_script( 'foundation_js', get_template_directory_uri() . '/js/foundation.min.js' ,array('jquery'),'', true);
wp_enqueue_script( 'main_js', get_template_directory_uri() . '/js/app.js' ,array('jquery'),'',true );
}
add_action( 'wp_enqueue_scripts', 'wpt_theme_js');
?>```
4 Answers
melissa brown
4,670 Pointsfound the answer you have to tick the box in CPT UI for Featured Image under settings.
Byron Murray
3,915 PointsThanks Melissa, that did the trick
melissa brown
4,670 Pointshey thanks for your reply. im not sure what i changed but i can see it now.
Robert Mehew
2,427 PointsAwesome, good job! :)
melissa brown
4,670 Pointsactually sorry i realised i was in the wrong section i can see it on pages but not in the portfolio section where it should be. . and if i click up on the screen options there is no featured image with a tick box
melissa brown
4,670 Pointshi guys im still having troubles with this does anyone know how to fix it?
Robert Mehew
2,427 PointsRobert Mehew
2,427 PointsOn the post or page edit screen, click Screen Options at the top right. Can you see Featured Image with a tick box next to it?