Customize the email sharing subject in Jetpack

Customize the email sharing subject in Jetpack on child sites.

Snippet Type

Execute on Child Sites

Snippet

function jetpack_email_sharing_customize_subject() {
    return 'Check this great post I just found!';
}
add_filter( 'wp_sharing_email_send_post_subject', 'jetpack_email_sharing_customize_subject' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.