Skip to content

Instantly share code, notes, and snippets.

@nutsandbolts
Created December 14, 2013 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nutsandbolts/7963066 to your computer and use it in GitHub Desktop.
Save nutsandbolts/7963066 to your computer and use it in GitHub Desktop.
Set a default homepage image for Facebook (functions.php)
//* Set default homepage image for Facebook
function nabm_facebook_image() {
if ( is_home() ) {
echo '<meta property="og:type" content="website" />';
echo '<meta property="og:image" content="URL-TO-IMAGE" />';
}
}
add_action( 'wp_head', 'nabm_facebook_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment