Advertisement
MrPauloeN

Miniatury Na Facebooka! Znaczniki Open Graph dla WordPressa

Jun 2nd, 2013
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.91 KB | None | 0 0
  1. <!-- Start of Open Graph -->
  2. <?php if (is_home()) { ?>
  3. <!-- if page is home  -->
  4.                
  5. <meta property="og:title" content="<?php bloginfo('name'); ?> |​| Paweł Nowak" />
  6. <meta property="og:description" content="<?php bloginfo('description'); ?>" />
  7.  
  8. <meta property="og:site_name" content="<?php bloginfo('name'); ?> |​| Paweł Nowak">
  9. <meta property="og:url" content="<?php bloginfo('url'); ?>"/>
  10.                
  11. <meta property="og:type" content="website" />
  12. <meta property="og:image" content="<?php echo get_template_directory_uri(); ?>/images/LogoHeadGreenBlue.png" />
  13.     <meta property="og:locale" content="pl_pl">
  14.            
  15. <?php } if (is_single()) { ?>
  16.     <!-- if is single (post) -->
  17. <meta property="og:title" content="<?php single_post_title(''); ?>" />
  18. <meta property="og:description" content="<?php echo strip_tags(get_the_excerpt($post->ID)); ?>" />
  19. <meta property="og:site_name" content="<?php bloginfo('name'); ?> |​| Paweł Nowak">             
  20. <meta property="og:url" content="<?php the_permalink() ?>"/>               
  21. <meta property="og:type" content="article" />
  22. <meta property="og:image" content="<?php
  23.         global $post;          
  24.         $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large' );
  25.         $url = $thumb['0'];
  26.         echo $url;?>" />
  27. <meta property="og:locale" content="pl_pl">
  28. <?php } if (is_page()){ ?>
  29.     <!-- if is page -->
  30. <meta property="og:title" content="<?php wp_title(); ?>" />
  31. <meta property="og:description" content="<?php echo get_post_meta($post->ID, "description", true); ?> | <?php bloginfo('description'); ?>" />
  32. <meta property="og:site_name" content="<?php bloginfo('name'); ?> |​| Paweł Nowak" />
  33. <meta property="og:url" content="<?php the_permalink() ?>"/>               
  34. <meta property="og:type" content="website" />
  35. <meta property="og:image" content="<?php echo get_template_directory_uri(); ?>/images/LogoHeadGreenBlue.png"  />
  36. <meta property="og:locale" content="pl_pl">
  37. <?php } ?>
  38.  
  39. <!-- End of Open Graph -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement