In this version there’s no way to ignore specific posts. You can only change the ID range in the bulk tagging tool. But I can tell you what to change in the source code to make APT ignore certain IDs if you want.
That works! I have about a hundred posts to ignore.. Would it slow down my site?
It shouldn’t – the code is fairly simple. Replace the numbers with appropriate post IDs and put it somewhere around the line 2838 (beginning of the function “apt_single_post_tagging”) in the main php file:
if (in_array($apt_post_id, array(1,2,3,4))){
return;
}
I haven’t tested this, so you might want to do that first or create a backup before putting this on a live site. Let me know if this works or not.
Also, just FYI – when a new version of APT is released, these changes will be lost. (But I’ll implement something like this in v1.9.)