-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_post_info
github-actions[bot] edited this page Jun 14, 2026
·
1 revision
Filters post array to insert custom data that can be used in status update process.
add_filter(
'wpt_post_info',
function(
array $values,
integer $post_ID
) {
// Your code here.
return $values;
},
10,
2
);-
array$valuesExisting values. -
integer$post_IDPost ID.
array $values
apply_filters( 'wpt_post_info', $values, $post_ID )