Yoast\WP\SEO\User_Meta\Framework\Custom_Meta

Author_Pronouns::get_valuepublicYoast 1.0

Returns the meta value.

Метод класса: Author_Pronouns{}

Хуков нет.

Возвращает

Строку. The meta value.

Использование

$Author_Pronouns = new Author_Pronouns();
$Author_Pronouns->get_value( $user_id ): string;
$user_id(int) (обязательный)
The user ID.

Код Author_Pronouns::get_value() Yoast 26.5

public function get_value( $user_id ): string {
	return \get_the_author_meta( $this->get_key(), $user_id );
}