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