wppaste
WordPress

apply_filters( 'pre_get_avatar_data', array $args, mixed $id_or_email )

Since
4.2.0
Filters whether to retrieve the avatar URL early.

Description

Passing a non-null value in the 'url' member of the return array will effectively short circuit get_avatar_data(), passing the value through the 'get_avatar_data' filter and returning early.

Parameters

$argsarray
Arguments passed to get_avatar_data(), after processing.
$id_or_emailmixed
The avatar to retrieve. Accepts a user ID, Gravatar SHA-256 or MD5 hash, user email, WP_User object, WP_Post object, or WP_Comment object.

Fired at · 1

  • wp-includes/link-template.php:4492get_avatar_data()

Source

	 * @since 4.2.0	 *	 * @param array $args        Arguments passed to get_avatar_data(), after processing.	 * @param mixed $id_or_email The avatar to retrieve. Accepts a user ID, Gravatar SHA-256 or MD5 hash,	 *                           user email, WP_User object, WP_Post object, or WP_Comment object.	 */	$args = apply_filters( 'pre_get_avatar_data', $args, $id_or_email ); 	if ( isset( $args['url'] ) ) {		/** This filter is documented in wp-includes/link-template.php */		return apply_filters( 'get_avatar_data', $args, $id_or_email );	}

History

Introduced in 4.2.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.