I believe I have the same problem, but I can provide more details …
In my situation, I’ve figured out that it’s an incompatibility between “Press Permit Pro” along with it’s “PP Custom Post Statuses” and your plugin.
Here is the response from the “Press Permit Pro” plugin author regarding a different plugin exhibiting the same issue:
That plugin calls the get_posts()
function, which suppresses plugin filter application by default. To support compatibility with Press Permit or any other plugin, the plugin should add this to the argument array passed into get_posts():
$qargs['suppress_filters'] = false;
… or at least apply a filter to that argument array so filtering can be switched on externally.
Thanks … Jeff