Untitled

 avatar
unknown
plain_text
4 years ago
249 B
6
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...