Filter: postie_comment_before

This filter is called just before the comment is added to the post. See this for more information about the data in the $comment array. add_filter(‘postie_comment_before’, ‘my_postie_comment_before’); function my_postie_comment_before($comment) { $post = get_post($comment[‘comment_post_ID’]); $title = $post->post_title; echo “postie_comment_before called<br>\n”; return…

Read MoreFilter: postie_comment_before

Filter: postie_gallery

This filter is called when Postie inserts a gallery shortcode into the post (which only ever happens if the “Automatically insert image gallery” setting is turned on). You can use this filter to generate an alternate gallery shortcode. At the point…

Read MoreFilter: postie_gallery

1.7.0 Released

New action hook: postie_file_added Fixed attachment uploading bug when the type & extension weren’t available. Clarified “Filter newlines” setting description. Better support for Exchange 2010+ thanks to Andrew Chaplin

Read More1.7.0 Released