I am trying to add custom image size to custom message type messages articlesby executing the following function in functions.php:
function thumb_size($id)
{
if(get_post_type() == "articles")
{
add_image_size('articles-thumb', 113, 72, true);
}
}
add_action ( 'publish_post', 'thumb_size' );
and try to show it with the following code:
the_post_thumbnail('articles-thumb');
But what I see as output is not the same size as me, what is the problem?
source
share