Advertisement
chadvonlind

FB Share for WP

Aug 1st, 2011
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <?php if(is_single() || is_page()) { ?>
  2.     <meta property="og:type" content="article" />
  3.     <meta property="og:title" content="<?php single_post_title(''); ?>" />
  4.     <meta property="og:description" content="<?php
  5.     while(have_posts()):the_post();
  6.     $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", get_the_excerpt());
  7.     echo apply_filters('the_excerpt_rss', $out_excerpt);
  8.     endwhile;   ?>" />
  9.     <meta property="og:url" content="<?php the_permalink(); ?>"/>
  10. <?php  } else { ?>
  11.     <meta property="og:type" content="article" />
  12.    <meta property="og:title" content="<?php bloginfo('name'); ?>" />
  13.     <meta property="og:url" content="<?php bloginfo('url'); ?>"/>
  14.     <meta property="og:description" content="<?php bloginfo('description'); ?>" />
  15. <?php  }  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement