Action: postie_post_after

This action is called just after Postie saves the post. At the point the action is called the post has been created and all attachments have been uploaded and associated with this post. There is one parameter to this filter: $post The $post parameter is…

Read MoreAction: postie_post_after

Filter: postie_author

This filter is called after Postie has determined who the post author should be. At the point the filter is called there is no post created. The parameter is a WordPress user ID. add_filter(‘postie_author’, ‘my_filterAuthor’); function my_filterAuthor($userId) { //do some user…

Read MoreFilter: postie_author