Skip to content

Instantly share code, notes, and snippets.

@dannymichel
dannymichel / gist:4133215
Created November 22, 2012 22:51
OpenGraph wp_head
add_action('wp_head', 'opengraph_on_single');
function opengraph_on_single() {
if ( is_single() ) {
global $post;
setup_postdata( $post );
echo '<meta property="og:type" content="article" />
<meta property="og:title" content="' . esc_attr( get_the_title() ) . '" />
<meta property="og:url" content="' . get_permalink() . '" />
<meta property="og:description" content="' . esc_attr( get_the_excerpt() ) . '" />';