_inc/lib/class-jetpack-instagram-gallery-helper.php 1 location
|
@@ 103-114 (lines=12) @@
|
100 |
|
* |
101 |
|
* @return mixed |
102 |
|
*/ |
103 |
|
public static function get_site_id() { |
104 |
|
$is_wpcom = ( defined( 'IS_WPCOM' ) && IS_WPCOM ); |
105 |
|
$site_id = $is_wpcom ? get_current_blog_id() : Jetpack_Options::get_option( 'id' ); |
106 |
|
if ( ! $site_id ) { |
107 |
|
return new WP_Error( |
108 |
|
'unavailable_site_id', |
109 |
|
__( 'Sorry, something is wrong with your Jetpack connection.', 'jetpack' ), |
110 |
|
403 |
111 |
|
); |
112 |
|
} |
113 |
|
return (int) $site_id; |
114 |
|
} |
115 |
|
} |
116 |
|
|
_inc/lib/class-jetpack-tweetstorm-helper.php 1 location
|
@@ 1641-1652 (lines=12) @@
|
1638 |
|
* |
1639 |
|
* @return mixed |
1640 |
|
*/ |
1641 |
|
public static function get_site_id() { |
1642 |
|
$is_wpcom = ( defined( 'IS_WPCOM' ) && IS_WPCOM ); |
1643 |
|
$site_id = $is_wpcom ? get_current_blog_id() : Jetpack_Options::get_option( 'id' ); |
1644 |
|
if ( ! $site_id ) { |
1645 |
|
return new WP_Error( |
1646 |
|
'unavailable_site_id', |
1647 |
|
__( 'Sorry, something is wrong with your Jetpack connection.', 'jetpack' ), |
1648 |
|
403 |
1649 |
|
); |
1650 |
|
} |
1651 |
|
return (int) $site_id; |
1652 |
|
} |
1653 |
|
} |
1654 |
|
|