• It would really be useful if you upgraded your plugin to also consider custom post types, since many use this on their WordPress installation.

    I found a SELECT which may in part be useful and this doesn’t care at all about the post types.

    SELECT ID
    FROM wp_users
    WHERE ID NOT IN (
    SELECT DISTINCT post_author FROM wp_posts
    ) AND ID NOT IN (1,2,3)

  • The topic ‘Upgrade to consider custom post types’ is closed to new replies.