Wayne

Wayne

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…

1.7.5 Released

If featured image is enabled, the featured image will no longer appear in the post.

1.7.4 Released

Added additional output if wp_insert_post() fails Fixed image upload failure when image filename doesn’t have an extension

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…

1.7.1 Released

Fixed issue where multiple custom taxonomy terms were not correctly being saved