apply_filters( ‘users_have_additional_content’, bool $users_have_additional_content, int[] $user_ids )

In this article

Filters whether the users being deleted have additional content associated with them outside of the post_author and link_owner relationships.

Parameters

$users_have_additional_contentbool
Whether the users have additional content. Default false.
$user_idsint[]
Array of IDs for users being deleted.

Source

$users_have_content = (bool) apply_filters( 'users_have_additional_content', false, $user_ids );

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.