NOTE: These instructions are for the unmodified 1.7.2 version of the plugin.
You can modify the php to grab a larger image from Facebook by doing the following:
- Open ‘/wp-content/plugins/jsl3-facebook-wall-feed/php/class-uki-facebook-wall-feed.php’
- Line 851 is the following:
return $result;
- Add the following lines before line 851:
$search = array('_s', '_n');
$result = str_replace($search, '_b', $result);
$result = str_replace('s130x130', 'b960x960', $result);
- Save the file
NOTE: Depending on the size you want, replace '_b'
and 'b960x960'
with the following:
'_t'
and 't75x75'
– up to 75 pixels on the longest side
'_s'
and 's130x130'
– up to 130 pixels on the longest side
'_a'
and 'a180x180'
– up to 180 pixels on the longest side
'_b'
and 'b960x960'
– up to 960 pixels on the longest side