Filter the Subscribe to comments text appearing below the comment form.
Parameters
- $comment_sub_text
string Subscribe to comments text.
Changelog
- Introduced in Jetpack 3.4.0
How to use this hook
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' );