modules/subscriptions.php 1 location
|
@@ 814-816 (lines=3) @@
|
811 |
|
echo $args['before_widget']; |
812 |
|
|
813 |
|
// Only show the title if there actually is a title |
814 |
|
if( ! empty( $instance['title'] ) ) { |
815 |
|
echo $args['before_title'] . esc_attr( $instance['title'] ) . $args['after_title'] . "\n"; |
816 |
|
} |
817 |
|
|
818 |
|
$referer = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); |
819 |
|
|
modules/widgets/social-media-icons.php 1 location
|
@@ 211-213 (lines=3) @@
|
208 |
|
$html = apply_filters( 'jetpack_social_media_icons_widget_array', $html ); |
209 |
|
ksort( $html ); |
210 |
|
$html = '<ul><li>' . join( '</li><li>', $html ) . '</li></ul>'; |
211 |
|
if ( ! empty( $instance['title'] ) ) { |
212 |
|
$html = $args['before_title'] . esc_html( $instance['title'] ) . $args['after_title'] . $html; |
213 |
|
} |
214 |
|
$html = $args['before_widget'] . $html . $args['after_widget']; |
215 |
|
|
216 |
|
/** This action is documented in modules/widgets/gravatar-profile.php */ |