I have been, or can be if you click on a link and make a purchase, compensated via a cash payment, gift, or something else of value for writing this post. Regardless, I only recommend products or services I use personally and believe will be good for my readers.
At the time of writing this, Facebook’s Like
(or Share
) button acts the same as sharing or posting a URL to your wall, except you don’t have the chance to leave a comment or choose which image to include with the post.
If you post a link to your wall, Facebook will guess at which images on the page may be best suitable for the page, and allow you to choose from several of them
However, with the Like
button that you can add to your Thesis site, when a user clicks the button, Facebook decides which image to use, and it isn’t always the best.
In order to control this, a tag is added to the <head> of the page, specifying the image_src
for the page. There are probably WordPress plugins that do this, but with Thesis, we don’t have to use a plugin.
Custom Fieldsvisible. This is where we’re going to set the value. If you don’t see a section for
Custom Fields, you can click on
Screen Optionsnear the upper-right of the screen and check that box.
Next, create a new Custom Field named image_src
, and for the value, enter the full URL to the image you’d like to feature.
Now we’re going to get our hands dirty. Open custom_functions.php, which is saved in /wp-content/themes/thesis_xx/custom (with xx being the version number). The first thing we’re going to do is add the function to write the image_src
tag in the
function image_src() { if (is_single() && (get_post_meta(get_the_ID(), 'image_src', true) != '')) { echo('<link rel="image_src" href="' . get_post_meta(get_the_ID(), 'image_src', true) . '" / >' . "\n"); } // ends if (is_single() && (get_post_meta(get_the_ID(), 'image_src', true) != '')) } // ends function image_src()
Next, add the hook, telling Thesis when to execute the function call:
add_action('wp_head', 'image_src');
Now, if the page that’s called is a single post, and the image_src
custom field is set, when a user clicks the Like
button, the specified image will be used.
If you wanted to take this a step further, add an else condition after the if block, giving a default image to use for the sharing. Or, leave it as-is and let Facebook decide.
Comments
Yusrie
Just what I need, thank you for this writing this. I haven’t yet see any other tutorial about this, yours the first one. Previously I used a plugin to do that. Haven’t tried with your method yet will try soon.
I believe it doesn’t clash with facebook social graph right?
Eric, Thank You.
Greg
This is great, thank you. I tried several other sets of codes and a plugin and got fatal errors. Yours was the most bug free and easy to follow. One more favor to ask: would you please you give an example of the “else” condition code that would specify a default image? You suggest this at the end of your post but I’m not experienced at coding enough to create it myself. Thanks!
Eric Nagel
I would leave it blank, and let Facebook pick out the image(s), but if you want to specify a default:
else {
echo('<link rel="image_src" href="http://ericnagel.wpengine.com/wp-content/uploads/2011/05/tim-hortons-coffee-icon.png" / >' . "\n");
} // ends else from if (is_single() && (get_post_meta(get_the_ID(), 'image_src', true) != ''))
Greg
Great, thanks. That worked well. Now it uses the post-specific image first, and if there isn’t one, it goes to my default image for the whole blog. You can see how it works at “Beer vs. Bread” – http://gihamilton.com/blog
Thanks for the quick reply and effective solution! Cheers, Greg