Hi
Think this should be straight forward to anyone who knows wordpress.
There are 2 tasks
1. add pinterest button to single posts
2. get opengraph og:images to work without a plugin
I’m manually setting up opengraph using the following but it’s only calling my main image 530px530px which I think is too big so need help calling the thumbnail.
In functions.php:
function get_fbimage() {
$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ”, ” );
i…
