Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
Change size of the Recent Posts thumbnails
Browse files Browse the repository at this point in the history
The images are now 220x150 px instead of 190x130

Already uploaded images can be regenerated with Regenerate Thumbnails
http://wordpress.org/extend/plugins/regenerate-thumbnails/
  • Loading branch information
jayj committed Oct 12, 2012
1 parent 7fff117 commit 779f2e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.php
Expand Up @@ -110,7 +110,7 @@ function cakifo_theme_setup() {
*/
add_image_size( 'small', apply_filters( 'small_thumb_width', 100 ), apply_filters( 'small_thumb_height', 100 ), true );
add_image_size( 'slider', apply_filters( 'slider_image_width', 500 ), apply_filters( 'slider_image_height', 230 ), true );
add_image_size( 'recent', apply_filters( 'recent_image_width', 190 ), apply_filters( 'recent_image_height', 130 ), true );
add_image_size( 'recent', apply_filters( 'recent_image_width', 220 ), apply_filters( 'recent_image_height', 150 ), true );

/* Load JavaScript and CSS styles */
add_action( 'wp_enqueue_scripts', 'cakifo_enqueue_script', 1 );
Expand Down

0 comments on commit 779f2e1

Please sign in to comment.