modules/widgets/eu-cookie-law.php 1 location
|
@@ 40-42 (lines=3) @@
|
| 37 |
|
'default-text' => __( 'Privacy & Cookies: This site uses cookies from WordPress.com and selected partners. ', 'jetpack' ), |
| 38 |
|
); |
| 39 |
|
|
| 40 |
|
if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) { |
| 41 |
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) ); |
| 42 |
|
} |
| 43 |
|
} |
| 44 |
|
|
| 45 |
|
public function widget( $args, $instance ) { |
modules/widgets/social-media-icons.php 1 location
|
@@ 80-82 (lines=3) @@
|
| 77 |
|
'twitch' => array( 'Twitch', 'https://www.twitch.tv/%s/' ), |
| 78 |
|
'tumblr' => array( 'Tumblr', 'https://%s.tumblr.com' ), |
| 79 |
|
); |
| 80 |
|
if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) { |
| 81 |
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) ); |
| 82 |
|
} |
| 83 |
|
} |
| 84 |
|
|
| 85 |
|
/** |
modules/widgets/top-posts.php 1 location
|
@@ 45-47 (lines=3) @@
|
| 42 |
|
|
| 43 |
|
$this->default_title = __( 'Top Posts & Pages', 'jetpack' ); |
| 44 |
|
|
| 45 |
|
if ( is_active_widget( false, false, $this->id_base ) || is_customize_preview() ) { |
| 46 |
|
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ) ); |
| 47 |
|
} |
| 48 |
|
|
| 49 |
|
/** |
| 50 |
|
* Add explanation about how the statistics are calculated. |