modules/widgets/social-media-icons.php 1 location
|
@@ 49-51 (lines=3) @@
|
46 |
|
'googleplus' => array( 'Google+', 'https://plus.google.com/u/0/%s/' ), |
47 |
|
); |
48 |
|
|
49 |
|
if ( is_active_widget( false, false, $this->id_base ) ) { |
50 |
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) ); |
51 |
|
} |
52 |
|
} |
53 |
|
|
54 |
|
public function enqueue_style() { |
modules/widgets/top-posts.php 1 location
|
@@ 44-46 (lines=3) @@
|
41 |
|
|
42 |
|
$this->default_title = __( 'Top Posts & Pages', 'jetpack' ); |
43 |
|
|
44 |
|
if ( is_active_widget( false, false, $this->id_base ) ) { |
45 |
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) ); |
46 |
|
} |
47 |
|
|
48 |
|
/** |
49 |
|
* Add explanation about how the statistics are calculated. |