Unable to upload a Featured Image

June 12, 2017


Our Team Showcase supports the ability to add Featured Images. However if you’re unable to utilize this feature, its likely the WordPress theme you’re using does not, and is overriding the plugin function.

While most WordPress themes allow for featured images, some restrict it to Single Post types, and not Custom-Post-Types, as employed by the plugin.

To resolve this issue, please edit your theme’s functions.php file and add this code to it:

Warning: If you are not comfortable editing PHP files, please do not attempt this. Any mistake you make could create larger issues on your site. You’ll want to enlist the services of a PHP developer to take of this for you.

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


Was this article helpful to you?