modules/masterbar/masterbar.php 1 location
|
@@ 135-140 (lines=6) @@
|
132 |
|
} |
133 |
|
} |
134 |
|
|
135 |
|
if ( class_exists( 'GP_Locales' ) ) { |
136 |
|
$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', get_locale() ); |
137 |
|
if ( $wpcom_locale_object instanceof GP_Locale ) { |
138 |
|
$wpcom_locale = $wpcom_locale_object->slug; |
139 |
|
} |
140 |
|
} |
141 |
|
|
142 |
|
return $wpcom_locale; |
143 |
|
} |
modules/notes.php 1 location
|
@@ 154-159 (lines=6) @@
|
151 |
|
} |
152 |
|
} |
153 |
|
|
154 |
|
if ( class_exists( 'GP_Locales' ) ) { |
155 |
|
$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', $wpcom_locale ); |
156 |
|
if ( $wpcom_locale_object instanceof GP_Locale ) { |
157 |
|
$wpcom_locale = $wpcom_locale_object->slug; |
158 |
|
} |
159 |
|
} |
160 |
|
|
161 |
|
$classes = 'wpnt-loading wpn-read'; |
162 |
|
$wp_admin_bar->add_menu( array( |
modules/widgets/follow-button.php 1 location
|
@@ 37-42 (lines=6) @@
|
34 |
|
} |
35 |
|
} |
36 |
|
|
37 |
|
if ( class_exists( 'GP_Locales' ) ) { |
38 |
|
$wpcom_locale_object = GP_Locales::by_field( 'wp_locale', $wpcom_locale ); |
39 |
|
if ( $wpcom_locale_object instanceof GP_Locale ) { |
40 |
|
$wpcom_locale = $wpcom_locale_object->slug; |
41 |
|
} |
42 |
|
} |
43 |
|
|
44 |
|
if ( empty( $instance['show_name'] ) ) { |
45 |
|
$attributes[] = 'data-show-blog-name="false"'; |