Home / Admin / Custom Social Share Email Body
Duplicate Snippet

Embed Snippet on Your Site

Custom Social Share Email Body

Can be used to modify the default email body (content) when a user clicks the social share email link.

Code Preview
php
<?php
add_filter( 'wpex_social_share_data_email_body', function( $body ) {
	return 'My custom email body text';
} );

Comments

Add a Comment