-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_settings
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Filter the printed message after updating XPoster settings.
add_filter(
'wpt_settings',
function(
string $message,
array $post
) {
// Your code here.
return $message;
},
10,
2
);-
string$messageResponse after saving settings. -
array$postPOST data, unsanitized.
apply_filters( 'wpt_settings', $message, $_POST )