I am using this in my functions.php
add_theme_support( 'post-thumbnails');
set_post_thumbnail_size();
add_image_size( 'post-thumb', 669, 272 );
and in my single.php,home.php and archive.php.. I am using this in loop:
<?php the_post_thumbnail('post-thumb'); ?>
Now I when I share post to linkedin is used the thumbnail of 669 x 272 dimension but I want to make another custom size of thumbnail e.g 180 x 110 size n force linkedin to use that thumbnail.
thanks in advance.