modules/subscriptions.php 1 location
|
@@ 877-879 (lines=3) @@
|
874 |
|
echo $args['before_widget']; |
875 |
|
|
876 |
|
// Only show the title if there actually is a title |
877 |
|
if( ! empty( $instance['title'] ) ) { |
878 |
|
echo $args['before_title'] . esc_attr( $instance['title'] ) . $args['after_title'] . "\n"; |
879 |
|
} |
880 |
|
|
881 |
|
$referer = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); |
882 |
|
|
modules/widgets/social-media-icons.php 1 location
|
@@ 215-217 (lines=3) @@
|
212 |
|
$html = apply_filters( 'jetpack_social_media_icons_widget_array', $html ); |
213 |
|
ksort( $html ); |
214 |
|
$html = '<ul><li>' . join( '</li><li>', $html ) . '</li></ul>'; |
215 |
|
if ( ! empty( $instance['title'] ) ) { |
216 |
|
$html = $args['before_title'] . esc_html( $instance['title'] ) . $args['after_title'] . $html; |
217 |
|
} |
218 |
|
$html = $args['before_widget'] . $html . $args['after_widget']; |
219 |
|
|
220 |
|
/** This action is documented in modules/widgets/gravatar-profile.php */ |