Created
December 14, 2013 18:38
-
-
Save nutsandbolts/7963066 to your computer and use it in GitHub Desktop.
Set a default homepage image for Facebook (functions.php)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* 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