Resizing post thumbnails ("Featured Image")
-
Please excuse if this is in the wrong area. It’s sort of a plugin theme crossover question.
I recently started using a new plugin called Related Posts Thumbnails. It’s working great (see bottom of this post).
However, I was trying to resize the thumbnail images that show in each blog. The information on the plugin’s page says to specify things like that in the code in the Theme Functions document.
I was able to insert the code into function.php as follows:
if ( function_exists( 'add_theme_support' ) ) add_theme_support( 'post-thumbnails', array( 'post' ) ); if ( function_exists( 'add_image_size' ) ) { add_image_size( 'category-thumb', 50, 50 ); add_image_size( 'homepage-thumb', 50, 50, true ); }However, the post thumbnails displayed in the plugin aren’t turning up as 50×50 like I’ve specified. They still look to be at least 125×125.
The topic ‘Resizing post thumbnails ("Featured Image")’ is closed to new replies.