PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2
Jetpack – WP Security, Backup, Speed, & Growth v16.2
16.2 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 All 502 releases
jetpack / 3rd-party / bitly.php

bitly.php in Jetpack – WP Security, Backup, Speed, & Growth 16.2, at 3rd-party/bitly.php

40 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 * Fixes issues with the Official Bitly for WordPress
4 * https://wordpress.org/plugins/bitly/
5 *
6 * @package automattic/jetpack
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit( 0 );
11 }
12
13 if ( isset( $GLOBALS['bitly'] ) ) {
14 if ( method_exists( $GLOBALS['bitly'], 'og_tags' ) ) {
15 remove_action( 'wp_head', array( $GLOBALS['bitly'], 'og_tags' ) );
16 }
17 add_action( 'wp_head', 'jetpack_bitly_og_tag', 100 );
18 }
19
20 /**
21 * Adds bitly OG tags.
22 */
23 function jetpack_bitly_og_tag() {
24 if ( has_filter( 'wp_head', 'jetpack_og_tags' ) === false ) {
25 // Add the bitly part again back if we don't have any jetpack_og_tags added.
26 if ( method_exists( $GLOBALS['bitly'], 'og_tags' ) ) {
27 $GLOBALS['bitly']->og_tags();
28 }
29 } elseif (
30 isset( $GLOBALS['posts'] )
31 && $GLOBALS['posts'][0]->ID > 0
32 && method_exists( $GLOBALS['bitly'], 'get_bitly_link_for_post_id' )
33 ) {
34 printf(
35 "<meta property=\"bitly:url\" content=\"%s\" /> \n",
36 esc_attr( $GLOBALS['bitly']->get_bitly_link_for_post_id( $GLOBALS['posts'][0]->ID ) )
37 );
38 }
39 }
40