filter

jetpack_subscribe_comment_label

Filter the Subscribe to comments text appearing below the comment form.

Parameters

$comment_sub_text
string

Subscribe to comments text.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.

Notes

You can use the filter to change the comment subscription text that appears below the native comment form when the Subscriptions feature is active:
function jeherve_sub_comment_text() {
        return 'custom text';
}
add_filter( 'jetpack_subscribe_comment_label', 'jeherve_sub_comment_text' );