Skip to content

Instantly share code, notes, and snippets.

@jeherve
Created October 12, 2011 20:04
Show Gist options
  • Save jeherve/1282359 to your computer and use it in GitHub Desktop.
Save jeherve/1282359 to your computer and use it in GitHub Desktop.
Add new og:image when using the custom field images plugin
function werewp_ogimage() {
$customimage = get_custom_field_image();
echo '<meta property="og:image" content="'.$customimage.'" />';
}
add_action( 'wp_head', 'werewp_ogimage' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment