Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. // og tags
  2. function fb_opengraph() {
  3. global $post;
  4.  
  5.  
  6. if(is_single()) {
  7. if(has_post_thumbnail($post->ID)) {
  8. $img_src = wp_get_attachment_url(get_post_thumbnail_id($post->ID), 'medium');
  9. } else {
  10. $img_src = get_stylesheet_directory_uri() . '/img/opengraph_image.jpg';
  11. }
  12. if($excerpt = $post->post_excerpt) {
  13. $excerpt = strip_tags($post->post_excerpt);
  14. $excerpt = str_replace("", "'", $excerpt);
  15. } else {
  16. $excerpt = get_bloginfo('description');
  17. }
  18. ?>
  19. <meta property="og:title" content="<?php echo the_title(); ?>"/>
  20. <meta property="og:description" content="<?php the_field('opis_produktu'); ?>"/>
  21. <meta property="og:type" content="article"/>
  22. <meta property="og:url" content="<?php echo the_permalink(); ?>"/>
  23. <meta property="og:site_name" content="<?php echo get_bloginfo(); ?>"/>
  24. <meta property="og:image" content="<?php echo $img_src; ?>"/>
  25.  
  26. <?php
  27. } else {
  28. ?>
  29. <meta property="og:title" content="<?php echo get_bloginfo('title'); ?>"/>
  30. <meta property="og:description" content="Opis w functions php"/>
  31. <meta property="og:type" content="article"/>
  32. <meta property="og:url" content="<?php echo get_home_url(); ?>"/>
  33. <meta property="og:site_name" content="<?php echo get_bloginfo(); ?>"/>
  34. <meta property="og:image" content="<?php echo get_template_directory_uri() ?>/img/site_image.jpg"/>
  35.  
  36. <?php
  37. }
  38. }
  39. add_action('wp_head', 'fb_opengraph', 5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement