Created
April 25, 2014 01:10
-
-
Save jeffreynolte/11274833 to your computer and use it in GitHub Desktop.
Open Graph tags for use in WordPress themes
This file contains 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
<meta property="og:title" content="<?php wp_title(); ?>" /> | |
<meta property="og:site_name" content="<?php wp_title(); ?>" /> | |
<meta property="og:url" content="<?php echo get_permalink( $post->ID ); ?>" /> | |
<meta property="og:description" content="<?php bloginfo('description'); ?>" /> | |
<meta property="og:image" content="<?php bloginfo('template_url'); ?>/images/Untitled-6-2.png" /> | |
<meta property="og:type" content="website" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment