Overview
This filter allows you to modify from the number (Sender).
Example:
Add 0 to the end sender number.
function wp_sms_modify_from($from) {
$from = $from . ' 0';
return $from;
}
add_filter('wp_sms_from', 'wp_sms_modify_from');
Updated on Mar 08, 2022
This filter allows you to modify from the number (Sender).
Add 0 to the end sender number.
function wp_sms_modify_from($from) {
$from = $from . ' 0';
return $from;
}
add_filter('wp_sms_from', 'wp_sms_modify_from');