| 1 |
<?php |
| 2 |
/** |
| 3 |
* Google+ embeds |
| 4 |
* Google+ has shut down. Output the link for history's sake. |
| 5 |
* Other than that, there's not much we can do. |
| 6 |
* |
| 7 |
* @package automattic/jetpack |
| 8 |
*/ |
| 9 |
|
| 10 |
if ( ! defined( 'ABSPATH' ) ) { |
| 11 |
exit( 0 ); |
| 12 |
} |
| 13 |
|
| 14 |
define( 'JETPACK_GOOGLEPLUS_EMBED_REGEX', '#^https?://plus\.(sandbox\.)?google\.com/(u/\d+/)?([^/]+)/posts/([^/]+)$#' ); |
| 15 |
|
| 16 |
/* |
| 17 |
* Example URL: https://plus.google.com/114986219448604314131/posts/LgHkesWCmJo |
| 18 |
* Alternate example: https://plus.google.com/u/0/100004581596612508203/posts/2UKwN67MBQs (note the /u/0/) |
| 19 |
*/ |
| 20 |
wp_embed_register_handler( 'googleplus', JETPACK_GOOGLEPLUS_EMBED_REGEX, 'jetpack_deprecated_embed_handler' ); |
| 21 |
|
| 22 |
add_shortcode( 'googleplus', 'jetpack_googleplus_shortcode_handler' ); |
| 23 |
|
| 24 |
/** |
| 25 |
* Display the Google+ shortcode. |
| 26 |
* |
| 27 |
* @param array $atts Shortcode attributes. |
| 28 |
*/ |
| 29 |
function jetpack_googleplus_shortcode_handler( $atts ) { |
| 30 |
global $wp_embed; |
| 31 |
|
| 32 |
if ( empty( $atts['url'] ) ) { |
| 33 |
return; |
| 34 |
} |
| 35 |
|
| 36 |
if ( ! preg_match( JETPACK_GOOGLEPLUS_EMBED_REGEX, $atts['url'] ) ) { |
| 37 |
return; |
| 38 |
} |
| 39 |
|
| 40 |
return sprintf( '<p>%s</p>', $wp_embed->shortcode( $atts, $atts['url'] ) ); |
| 41 |
} |
| 42 |
|