mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
4 lines
200 B
Text
4 lines
200 B
Text
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' );
|