Skip to content

Instantly share code, notes, and snippets.

@vdite
vdite / header.php
Last active August 29, 2015 13:57
Manual Twitter Cards and OG Graph Integration in Wordpress Head.php
<?php if ( is_singular() || is_front_page() ) { ?>
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@YOUR-TWITTER-NAME" />
<meta name="twitter:url" content="<?php the_permalink() ?>" />
<meta name="twitter:title" content="<?php do_action('wpseo_the_title') ?>" />
<meta name="twitter:description" content="<?php do_action('wpseo_the_desc') ?>" />
<meta property="og:title" content="<?php do_action('wpseo_the_title') ?>">
<meta property="og:type" content="article">
<meta property="og:url" content="<?php the_permalink() ?>">