Adding a function to allow featured image to post
Description
Add the code below to a theme that does not have the featured image option. Add the code in the functions.php file
PHP Source Code
<?php
ob_start();
/* ========================Thumbnails========================= */
if (function_exists('add_theme_support')) {
add_theme_support('post-thumbnails');
/* add_image_size( 'post-thumb-slide', 1100, 463, true );
add_image_size( 'page-thumb', 375, 234, true );
add_image_size( 'page-thumb', 320, 234, true ); */
}
?>