jetpack
Last commit date
3rd-party
10 years ago
_inc
10 years ago
languages
10 years ago
modules
5 years ago
views
10 years ago
.svnignore
10 years ago
class.jetpack-bbpress-json-api-compat.php
10 years ago
class.jetpack-cli.php
10 years ago
class.jetpack-client-server.php
10 years ago
class.jetpack-client.php
10 years ago
class.jetpack-data.php
10 years ago
class.jetpack-debugger.php
10 years ago
class.jetpack-error.php
10 years ago
class.jetpack-heartbeat.php
10 years ago
class.jetpack-ixr-client.php
10 years ago
class.jetpack-network-sites-list-table.php
10 years ago
class.jetpack-network.php
10 years ago
class.jetpack-options.php
10 years ago
class.jetpack-post-images.php
10 years ago
class.jetpack-signature.php
10 years ago
class.jetpack-sync.php
10 years ago
class.jetpack-user-agent.php
10 years ago
class.jetpack-xmlrpc-server.php
10 years ago
class.jetpack.php
10 years ago
class.json-api-endpoints.php
3 years ago
class.json-api.php
10 years ago
class.media-extractor.php
10 years ago
class.media-summary.php
10 years ago
class.photon.php
10 years ago
composer.json
10 years ago
functions.compat.php
10 years ago
functions.gallery.php
10 years ago
functions.opengraph.php
10 years ago
functions.photon.php
10 years ago
functions.twitter-cards.php
10 years ago
jetpack.php
3 years ago
locales.php
10 years ago
readme.txt
3 years ago
require-lib.php
10 years ago
uninstall.php
10 years ago
functions.opengraph.php
234 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Open Graph Tags |
| 4 | * |
| 5 | * Add Open Graph tags so that Facebook (and any other service that supports them) |
| 6 | * can crawl the site better and we provide a better sharing experience. |
| 7 | * |
| 8 | * @link http://ogp.me/ |
| 9 | * @link http://developers.facebook.com/docs/opengraph/ |
| 10 | */ |
| 11 | add_action( 'wp_head', 'jetpack_og_tags' ); |
| 12 | |
| 13 | function jetpack_og_tags() { |
| 14 | if ( false === apply_filters( 'jetpack_enable_opengraph', true ) ) { |
| 15 | _deprecated_function( 'jetpack_enable_opengraph', '2.0.3', 'jetpack_enable_open_graph' ); |
| 16 | return; |
| 17 | } |
| 18 | |
| 19 | // Disable the widont filter on WP.com to avoid stray  s |
| 20 | $disable_widont = remove_filter( 'the_title', 'widont' ); |
| 21 | |
| 22 | $og_output = "\n<!-- Jetpack Open Graph Tags -->\n"; |
| 23 | $tags = array(); |
| 24 | |
| 25 | $image_width = absint( apply_filters( 'jetpack_open_graph_image_width', 200 ) ); |
| 26 | $image_height = absint( apply_filters( 'jetpack_open_graph_image_height', 200 ) ); |
| 27 | $description_length = 197; |
| 28 | |
| 29 | if ( is_home() || is_front_page() ) { |
| 30 | $site_type = get_option( 'open_graph_protocol_site_type' ); |
| 31 | $tags['og:type'] = ! empty( $site_type ) ? $site_type : 'website'; |
| 32 | $tags['og:title'] = get_bloginfo( 'name' ); |
| 33 | $tags['og:description'] = get_bloginfo( 'description' ); |
| 34 | |
| 35 | $front_page_id = get_option( 'page_for_posts' ); |
| 36 | if ( $front_page_id && is_home() ) |
| 37 | $tags['og:url'] = get_permalink( $front_page_id ); |
| 38 | else |
| 39 | $tags['og:url'] = home_url( '/' ); |
| 40 | |
| 41 | // Associate a blog's root path with one or more Facebook accounts |
| 42 | $facebook_admins = get_option( 'facebook_admins' ); |
| 43 | if ( ! empty( $facebook_admins ) ) |
| 44 | $tags['fb:admins'] = $facebook_admins; |
| 45 | |
| 46 | } else if ( is_author() ) { |
| 47 | $tags['og:type'] = 'profile'; |
| 48 | |
| 49 | $author = get_queried_object(); |
| 50 | |
| 51 | $tags['og:title'] = $author->display_name; |
| 52 | $tags['og:url'] = get_author_posts_url( $author->ID ); |
| 53 | $tags['og:description'] = $author->description; |
| 54 | $tags['profile:first_name'] = get_the_author_meta( 'first_name', $author->ID ); |
| 55 | $tags['profile:last_name'] = get_the_author_meta( 'last_name', $author->ID ); |
| 56 | |
| 57 | } else if ( is_singular() ) { |
| 58 | global $post; |
| 59 | $data = $post; // so that we don't accidentally explode the global |
| 60 | |
| 61 | $tags['og:type'] = 'article'; |
| 62 | $tags['og:title'] = empty( $data->post_title ) ? ' ' : wp_kses( $data->post_title, array() ) ; |
| 63 | $tags['og:url'] = get_permalink( $data->ID ); |
| 64 | if ( !post_password_required() ) |
| 65 | $tags['og:description'] = ! empty( $data->post_excerpt ) ? preg_replace( '@https?://[\S]+@', '', strip_shortcodes( wp_kses( $data->post_excerpt, array() ) ) ): wp_trim_words( preg_replace( '@https?://[\S]+@', '', strip_shortcodes( wp_kses( $data->post_content, array() ) ) ) ); |
| 66 | $tags['og:description'] = empty( $tags['og:description'] ) ? ' ' : $tags['og:description']; |
| 67 | $tags['article:published_time'] = date( 'c', strtotime( $data->post_date_gmt ) ); |
| 68 | $tags['article:modified_time'] = date( 'c', strtotime( $data->post_modified_gmt ) ); |
| 69 | if ( post_type_supports( get_post_type( $data ), 'author' ) && isset( $data->post_author ) ) |
| 70 | $tags['article:author'] = get_author_posts_url( $data->post_author ); |
| 71 | } |
| 72 | |
| 73 | // Allow plugins to inject additional template-specific open graph tags |
| 74 | $tags = apply_filters( 'jetpack_open_graph_base_tags', $tags, compact( 'image_width', 'image_height' ) ); |
| 75 | |
| 76 | // Re-enable widont if we had disabled it |
| 77 | if ( $disable_widont ) |
| 78 | add_filter( 'the_title', 'widont' ); |
| 79 | |
| 80 | if ( empty( $tags ) && apply_filters( 'jetpack_open_graph_return_if_empty', true ) ) |
| 81 | return; |
| 82 | |
| 83 | $tags['og:site_name'] = get_bloginfo( 'name' ); |
| 84 | |
| 85 | if ( !post_password_required() ) |
| 86 | $tags['og:image'] = jetpack_og_get_image( $image_width, $image_height ); |
| 87 | |
| 88 | // Facebook whines if you give it an empty title |
| 89 | if ( empty( $tags['og:title'] ) ) |
| 90 | $tags['og:title'] = __( '(no title)', 'jetpack' ); |
| 91 | |
| 92 | // Shorten the description if it's too long |
| 93 | if ( isset( $tags['og:description'] ) ) { |
| 94 | $tags['og:description'] = strlen( $tags['og:description'] ) > $description_length ? mb_substr( $tags['og:description'], 0, $description_length ) . '...' : $tags['og:description']; |
| 95 | } |
| 96 | |
| 97 | // Add any additional tags here, or modify what we've come up with |
| 98 | $tags = apply_filters( 'jetpack_open_graph_tags', $tags, compact( 'image_width', 'image_height' ) ); |
| 99 | |
| 100 | // secure_urls need to go right after each og:image to work properly so we will abstract them here |
| 101 | $secure = $tags['og:image:secure_url'] = ( empty( $tags['og:image:secure_url'] ) ) ? '' : $tags['og:image:secure_url']; |
| 102 | unset( $tags['og:image:secure_url'] ); |
| 103 | $secure_image_num = 0; |
| 104 | |
| 105 | foreach ( (array) $tags as $tag_property => $tag_content ) { |
| 106 | // to accomodate multiple images |
| 107 | $tag_content = (array) $tag_content; |
| 108 | $tag_content = array_unique( $tag_content ); |
| 109 | |
| 110 | foreach ( $tag_content as $tag_content_single ) { |
| 111 | if ( empty( $tag_content_single ) ) |
| 112 | continue; // Don't ever output empty tags |
| 113 | $og_tag = sprintf( '<meta property="%s" content="%s" />', esc_attr( $tag_property ), esc_attr( $tag_content_single ) ); |
| 114 | $og_output .= apply_filters( 'jetpack_open_graph_output', $og_tag ); |
| 115 | $og_output .= "\n"; |
| 116 | |
| 117 | if ( 'og:image' == $tag_property ) { |
| 118 | if ( is_array( $secure ) && !empty( $secure[$secure_image_num] ) ) { |
| 119 | $og_tag = sprintf( '<meta property="og:image:secure_url" content="%s" />', esc_url( $secure[ $secure_image_num ] ) ); |
| 120 | $og_output .= apply_filters( 'jetpack_open_graph_output', $og_tag ); |
| 121 | $og_output .= "\n"; |
| 122 | } else if ( !is_array( $secure ) && !empty( $secure ) ) { |
| 123 | $og_tag = sprintf( '<meta property="og:image:secure_url" content="%s" />', esc_url( $secure ) ); |
| 124 | $og_output .= apply_filters( 'jetpack_open_graph_output', $og_tag ); |
| 125 | $og_output .= "\n"; |
| 126 | } |
| 127 | $secure_image_num++; |
| 128 | } |
| 129 | } |
| 130 | } |
| 131 | echo $og_output; |
| 132 | } |
| 133 | |
| 134 | function jetpack_og_get_image( $width = 200, $height = 200, $max_images = 4 ) { // Facebook requires thumbnails to be a minimum of 200x200 |
| 135 | $image = ''; |
| 136 | |
| 137 | if ( is_singular() && !is_home() && !is_front_page() ) { |
| 138 | global $post; |
| 139 | $image = ''; |
| 140 | |
| 141 | // Attempt to find something good for this post using our generalized PostImages code |
| 142 | if ( class_exists( 'Jetpack_PostImages' ) ) { |
| 143 | $post_images = Jetpack_PostImages::get_images( $post->ID, array( 'width' => $width, 'height' => $height ) ); |
| 144 | if ( $post_images && !is_wp_error( $post_images ) ) { |
| 145 | $image = array(); |
| 146 | foreach ( (array) $post_images as $post_image ) { |
| 147 | $image[] = $post_image['src']; |
| 148 | } |
| 149 | } |
| 150 | } |
| 151 | } else if ( is_author() ) { |
| 152 | $author = get_queried_object(); |
| 153 | if ( function_exists( 'get_avatar_url' ) ) { |
| 154 | $avatar = get_avatar_url( $author->user_email, $width ); |
| 155 | |
| 156 | if ( ! empty( $avatar ) ) { |
| 157 | if ( is_array( $avatar ) ) |
| 158 | $image = $avatar[0]; |
| 159 | else |
| 160 | $image = $avatar; |
| 161 | } |
| 162 | } |
| 163 | else { |
| 164 | $has_filter = has_filter( 'pre_option_show_avatars', '__return_true' ); |
| 165 | if ( !$has_filter ) { |
| 166 | add_filter( 'pre_option_show_avatars', '__return_true' ); |
| 167 | } |
| 168 | $avatar = get_avatar( $author->user_email, $width ); |
| 169 | if ( !$has_filter ) { |
| 170 | remove_filter( 'pre_option_show_avatars', '__return_true' ); |
| 171 | } |
| 172 | |
| 173 | if ( !empty( $avatar ) && !is_wp_error( $avatar ) ) { |
| 174 | if ( preg_match( '/src=["\']([^"\']+)["\']/', $avatar, $matches ) ); |
| 175 | $image = wp_specialchars_decode( $matches[1], ENT_QUOTES ); |
| 176 | } |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | if ( empty( $image ) ) |
| 181 | $image = array(); |
| 182 | else if ( !is_array( $image ) ) |
| 183 | $image = array( $image ); |
| 184 | |
| 185 | // First fall back, blavatar |
| 186 | if ( empty( $image ) && function_exists( 'blavatar_domain' ) ) { |
| 187 | $blavatar_domain = blavatar_domain( site_url() ); |
| 188 | if ( blavatar_exists( $blavatar_domain ) ) |
| 189 | $image[] = blavatar_url( $blavatar_domain, 'img', $width ); |
| 190 | } |
| 191 | |
| 192 | // Second fall back, blank image |
| 193 | if ( empty( $image ) ) { |
| 194 | $image[] = "http://wordpress.com/i/blank.jpg"; |
| 195 | } |
| 196 | |
| 197 | return $image; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * @param $email |
| 202 | * @param $width |
| 203 | * @return array|bool|mixed|string |
| 204 | */ |
| 205 | function jetpack_og_get_image_gravatar( $email, $width ) { |
| 206 | $image = ''; |
| 207 | if ( function_exists( 'get_avatar_url' ) ) { |
| 208 | $avatar = get_avatar_url($email, $width); |
| 209 | if ( ! empty( $avatar ) ) { |
| 210 | if ( is_array( $avatar ) ) |
| 211 | $image = $avatar[0]; |
| 212 | else |
| 213 | $image = $avatar; |
| 214 | } |
| 215 | } else { |
| 216 | $has_filter = has_filter( 'pre_option_show_avatars', '__return_true' ); |
| 217 | if ( !$has_filter ) { |
| 218 | add_filter( 'pre_option_show_avatars', '__return_true' ); |
| 219 | } |
| 220 | $avatar = get_avatar( $email, $width ); |
| 221 | |
| 222 | if ( !$has_filter ) { |
| 223 | remove_filter( 'pre_option_show_avatars', '__return_true' ); |
| 224 | } |
| 225 | |
| 226 | if ( !empty( $avatar ) && !is_wp_error( $avatar ) ) { |
| 227 | if ( preg_match( '/src=["\']([^"\']+)["\']/', $avatar, $matches ) ) |
| 228 | $image = wp_specialchars_decode($matches[1], ENT_QUOTES); |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | return $image; |
| 233 | } |
| 234 |