Home Forums WordPress Themes – Premium Circumference Can´t see my posts in the blog-page..? Reply To: Can´t see my posts in the blog-page..?

#16942
Sushil Adhikari
Moderator

Hi Maria Weywadt,

Sorry for the inconvenience, image that you are getting is cropped image with 550*550 dimension. To show full image, please follow this following steps:

1> Add this code on functions.php of child theme:


function circumference_change_thumbnial_size_child() {

	set_post_thumbnail_size(); //show original image size    
}
add_action('after_setup_theme', 'circumference_change_thumbnial_size_child', 20);

2> Then remove that image form media gallery permanently and again re-upload that image. Finally you need to set newly uploaded image as featured image in particular post.

Note: If you’re not technically sound in WordPress, we suggest you to take help from developer. And using child theme will prevent your changes to overwrite on theme update.

Thanks.