Yoast\WP\SEO\User_Meta\Framework\Custom_Meta

Author_Title::get_value()publicYoast 1.0

Returns the meta value.

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

Хуков нет.

Возвращает

Строку. The meta value.

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

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

Код Author_Title::get_value() Yoast 25.1

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