Skip to content

Instantly share code, notes, and snippets.

@jeherve
Created August 17, 2013 18:34
Show Gist options
  • Save jeherve/6258174 to your computer and use it in GitHub Desktop.
Save jeherve/6258174 to your computer and use it in GitHub Desktop.
[Jetpack] Add a default Image Open Graph tag only on the home page (because Jetpack doesn’t add an image tag on the home page)
<?php
function fb_home_image() {
$fb_home_img = 'YOUR_IMAGE_URL';
$fb_home_img_output = sprintf( '<meta property="og:image" content="%s" />', esc_attr( $fb_home_img ) );
if ( is_home() )
echo $fb_home_img_output;
}
add_action( 'wp_head', 'fb_home_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment