debug-bar
5 years ago
3rd-party.php
5 years ago
bbpress.php
5 years ago
beaverbuilder.php
5 years ago
bitly.php
5 years ago
buddypress.php
5 years ago
class-domain-mapping.php
5 years ago
class-jetpack-bbpress-rest-api.php
5 years ago
class-jetpack-crm-data.php
5 years ago
class-jetpack-modules-overrides.php
5 years ago
class.jetpack-amp-support.php
5 years ago
creative-mail.php
5 years ago
crowdsignal.php
5 years ago
debug-bar.php
5 years ago
qtranslate-x.php
5 years ago
vaultpress.php
5 years ago
web-stories.php
5 years ago
woocommerce-services.php
5 years ago
woocommerce.php
5 years ago
wpml.php
5 years ago
bitly.php
34 lines
| 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 ( class_exists( 'Bitly' ) ) { |
| 10 | |
| 11 | if ( isset( $GLOBALS['bitly'] ) ) { |
| 12 | if ( method_exists( $GLOBALS['bitly'], 'og_tags' ) ) { |
| 13 | remove_action( 'wp_head', array( $GLOBALS['bitly'], 'og_tags' ) ); |
| 14 | } |
| 15 | |
| 16 | add_action( 'wp_head', 'jetpack_bitly_og_tag', 100 ); |
| 17 | } |
| 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 ( isset( $GLOBALS['posts'] ) && $GLOBALS['posts'][0]->ID > 0 ) { |
| 30 | printf( "<meta property=\"bitly:url\" content=\"%s\" /> \n", esc_attr( $GLOBALS['bitly']->get_bitly_link_for_post_id( $GLOBALS['posts'][0]->ID ) ) ); |
| 31 | } |
| 32 | |
| 33 | } |
| 34 |