Untitled
unknown
plain_text
5 years ago
249 B
9
Indexable
add_action('transition_post_status', 'customfunc_new_post', 10, 3);
function customfunc_new_post($new_status, $old_status, $post)
{
if ('publish' !== $new_status or 'publish' === $old_status)
{
return;
}
//your code
}Editor is loading...