PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 12.9.3
Jetpack – WP Security, Backup, Speed, & Growth v12.9.3
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / shortcodes / googleplus.php

googleplus.php in Jetpack – WP Security, Backup, Speed, & Growth 12.9.3, at modules/shortcodes/googleplus.php

38 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 define( 'JETPACK_GOOGLEPLUS_EMBED_REGEX', '#^https?://plus\.(sandbox\.)?google\.com/(u/\d+/)?([^/]+)/posts/([^/]+)$#' );
11
12 /*
13 * Example URL: https://plus.google.com/114986219448604314131/posts/LgHkesWCmJo
14 * Alternate example: https://plus.google.com/u/0/100004581596612508203/posts/2UKwN67MBQs (note the /u/0/)
15 */
16 wp_embed_register_handler( 'googleplus', JETPACK_GOOGLEPLUS_EMBED_REGEX, 'jetpack_deprecated_embed_handler' );
17
18 add_shortcode( 'googleplus', 'jetpack_googleplus_shortcode_handler' );
19
20 /**
21 * Display the Google+ shortcode.
22 *
23 * @param array $atts Shortcode attributes.
24 */
25 function jetpack_googleplus_shortcode_handler( $atts ) {
26 global $wp_embed;
27
28 if ( empty( $atts['url'] ) ) {
29 return;
30 }
31
32 if ( ! preg_match( JETPACK_GOOGLEPLUS_EMBED_REGEX, $atts['url'] ) ) {
33 return;
34 }
35
36 return sprintf( '<p>%s</p>', $wp_embed->shortcode( $atts, $atts['url'] ) );
37 }
38