You appear to be a bot. Output may be restricted
Description
Someone follows my blog Toggle
Usage
Jetpack_Subscriptions::social_notifications_subscribe_field();
Parameters
Returns
void
Source
File name: jetpack/modules/subscriptions.php
Lines:
1 to 14 of 14
public function social_notifications_subscribe_field() { $checked = (int) ( 'on' === get_option( 'social_notifications_subscribe', 'on' ) ); ?> <label> <input type="checkbox" name="social_notifications_subscribe" id="social_notifications_subscribe" value="1" <?php checked( $checked ); ?> /> <?php /* translators: this is a label for a setting that starts with "Email me whenever" */ esc_html_e( 'Someone follows my blog', 'jetpack' ); ?> </label> <?php }