IMAGE SIZE
-
Hi there,
I saw the previews post about image resizing but I cant seem
to make this work.I want to get the big image from facebook. I am at
class-uki-facebook-wall-feed.php line 840function fb_fix( $str ) {
$pos = strpos( $str, ‘safe_image.php’ );
if ( $pos !== FALSE ) {
parse_str( $str );
$str = $url;
}$result = ‘<img src=”‘ . htmlentities( $str, ENT_QUOTES, ‘UTF-8’ ) . ‘” alt=”‘ . __( ‘Facebook Picture’, JSL3_FWF_TEXT_DOMAIN );
if ( isset( $w ) && isset( $h ) )
$result .= ‘” width=”‘ . $w . ‘” height=”‘ . $h;
$result .= ‘” />’;return $result;
}It seems that everything I have done following the previews post doesn’t work. Can you please help me?
- The topic ‘IMAGE SIZE’ is closed to new replies.