This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define( 'FB_COVER_SIZE_NAME', 'fb-cover' ); | |
function custom_theme_setup() { | |
add_image_size( FB_COVER_SIZE_NAME, 660, 347, true ); | |
// more img sizes | |
} | |
add_action( 'init', 'custom_theme_setup' ); | |
function lb_image_downsize( $value = false, $post_id, $size = 'medium' ) | |
{ | |
$arr_size = get_image_size($size); |