Home / Admin / Custom Social Share Email Subject
Duplicate Snippet

Embed Snippet on Your Site

Custom Social Share Email Subject

If you wish to modify the email subject text when clicking the social share email icon you can do so using the "wpex_social_share_data_email_subject" filter.

Code Preview
php
<?php
add_filter( 'wpex_social_share_data_email_subject', function() {
	return 'My custom subject';
} );

Comments

Add a Comment