Yoast\WP\SEO\User_Meta\Framework\Custom_Meta
Author_Pronouns::get_value
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() Author Pronouns::get value Yoast 26.5
public function get_value( $user_id ): string {
return \get_the_author_meta( $this->get_key(), $user_id );
}