-
Notifications
You must be signed in to change notification settings - Fork 4
wpt_insert_post
github-actions[bot] edited this page Jun 19, 2026
·
3 revisions
Runs when post data is inserted.
add_action(
'wpt_insert_post',
function(
array $_POST,
int $id
) {
// Your code here.
},
10,
2
);-
array$_POSTUnaltered POST data. -
int$idPost ID
do_action( 'wpt_insert_post', $_POST, $id )