Enable featured image wordpress


This Post Describe ‘How enable Featured image in Wordpress?For this your theme is updated with higher version of Wordpress. If you have not latest version of wordpres then Download the latest version.  If you not see ‘Featured Image’ In Wordpress Admin Panel at right-bottom side when you create new Post then you have need to enable this option.

To Enable “Feature Image” in Wordpress, you need to add the following codes to functions.php template file:

Example:

// Add support for Featured Images
if (function_exists('add_theme_support')) {
        add_theme_support('post-thumbnails');
        add_image_size('index-categories', 150, 150, true);
        add_image_size('page-single', 350, 350, true);
}

Above written code you see that can help to enable  “Featured Image” in Wordpress. Now you can go to Wordpress Admin Panel and click on “Screen Options”.  There is option with title “Featured Image”. Be Sure the box is checked of “Featured Image”

You have done!
Share:

No comments:

Post a Comment