wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



the_author_meta › WordPress Function

Depuis2.8.0
Dépréciéen/a
the_author_meta ( $field = '', $user_id = false )
Paramètres: (2)
  • (string) $field Selects the field of the users record. See get_the_author_meta() for the list of possible fields.
    Requis: Non
    Défaut: (vide)
  • (int|false) $user_id Optional. User ID. Defaults to the current post author.
    Requis: Non
    Défaut: false
Voir:
Défini(e) dans:
Codex:

Outputs the field from the user's DB object. Defaults to current post's author.



Source

function the_author_meta( $field = '', $user_id = false ) {
	$author_meta = get_the_author_meta( $field, $user_id );

	/**
	 * Filters the value of the requested user metadata.
	 *
	 * The filter name is dynamic and depends on the $field parameter of the function.
	 *
	 * @since 2.8.0
	 *
	 * @param string    $author_meta The value of the metadata.
	 * @param int|false $user_id     The user ID.
	 */
	echo apply_filters( "the_author_{$field}", $author_meta, $user_id );
}