Jetpack_Subscriptions::subscription_comment_subscribe_setting PHP Method

subscription_comment_subscribe_setting() public method

Comments Subscriptions Toggle
    function subscription_comment_subscribe_setting()
    {
        $stc_enabled = get_option('stc_enabled', 1);
        ?>

		<p class="description">
			<input type="checkbox" name="stc_enabled" id="jetpack-comment-subscribe" value="1" <?php 
        checked($stc_enabled, 1);
        ?>
 />
			<?php 
        _e("Show a <em>'follow comments'</em> option in the comment form", 'jetpack');
        ?>
		</p>

	<?php 
    }