{"id":3612,"date":"2018-01-05T15:58:00","date_gmt":"2018-01-05T15:58:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3612"},"modified":"2022-10-16T14:19:30","modified_gmt":"2022-10-16T14:19:30","slug":"add-open-graph-to-genesis","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/add-open-graph-to-genesis\/","title":{"rendered":"Add Open Graph To Genesis"},"content":{"rendered":"\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to add Open Graph To Genesis.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/** ADD OPEN GRAPH TO GENESIS THEME\n\/\/* Call the First Image in a Post (Used in the Open Graph Call Below)\nfunction catch_first_image() {\n  global $post, $posts;\n  $first_img = '';\n  ob_start();\n  ob_end_clean();\n  $output = preg_match_all('\/&lt;img.+src=&#91;\\'\"](&#91;^\\'\"]+)&#91;\\'\"].*&gt;\/i', $post-&gt;post_content, $matches);\n  $first_img = $matches &#91;1] &#91;0];\n\n  if(empty($first_img)){ \/\/Define default image\n    $first_img = \"\/images\/defalut.jpg\";\n  }\n\n  return $first_img;\n\n}\n\n\/\/* Add Open Graph meta tag to Head\nadd_action( 'genesis_meta', 'fb_opengraph' );\nfunction fb_opengraph() {\n  global $post;\n\n  if( has_post_thumbnail( $post-&gt;ID ) ) {\n    $img_src = wp_get_attachment_image_src( get_post_thumbnail_id( $post-&gt;ID ), 'single-post-thumbnail' )&#91;0];\n  }\n  else {\n    $img_src = catch_first_image();\n  }\n\n?&gt;\n\n\n\n&lt;?php\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to add Open Graph To Genesis.<\/p>\n","protected":false},"author":1,"featured_media":10674,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":3,"wds_primary_category":56,"footnotes":""},"categories":[56],"tags":[110,64,179,229],"class_list":{"0":"post-3612","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"tag-code","9":"tag-genesis-framework","10":"tag-open-graph-protocol","11":"tag-wordpress-themes","12":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/Genesis-Code-Snippets-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/Genesis-Code-Snippets-600x515.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3612","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3612"}],"version-history":[{"count":2,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3612\/revisions"}],"predecessor-version":[{"id":10694,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3612\/revisions\/10694"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/10674"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3612"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3612"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3612"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}