Yoast\WP\SEO\Helpers
User_Helper::get_the_author_posts_url()
Retrieves the archive url of the user.
Метод класса: User_Helper{}
Хуков нет.
Возвращает
Строку
. The author's archive url.
Использование
$User_Helper = new User_Helper(); $User_Helper->get_the_author_posts_url( $user_id );
- $user_id(int|false) (обязательный)
- User ID.
Код User_Helper::get_the_author_posts_url() User Helper::get the author posts url Yoast 24.4
public function get_the_author_posts_url( $user_id ) { return \get_author_posts_url( $user_id ); }