Hello, the tagging function is always executed when a new post is added via WP API (APT uses the hook “publish_post”).
Are you sure that your autoblog plugin doesn’t use some other way to add new posts?
That might very well be the issue. How can I find out which way my plugin uses to add new posts?
Does the plugin use the function wp_insert_post in its files? http://codex.ww.wp.xz.cn/Function_Reference/wp_insert_post
If you contact the support they might tell you how exactly the posts are being added.
Their support is dead :/
And yes, wp_insert_post is used.
// Add the post
if ($this->type <> ‘preview’) {
$pid = wp_insert_post($post);
Just to be sure, I’ve just tested wp_insert_post for adding new posts and my plugin processes them just fine (as I expected).
To be honest, I’m not sure what the problem might be (and I’m out of ideas). There must be something else that prevents APT from tagging.
Alright. Thanks for your quick help anyway. It is probably just this plugin working in a special way.