Automattic\WooCommerce\Internal\Admin\ProductReviews
ReviewsListTable::get_item_author_url()
Gets the item author URL.
Метод класса: ReviewsListTable{}
Хуков нет.
Возвращает
Строку
.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_item_author_url() : string;
Код ReviewsListTable::get_item_author_url() ReviewsListTable::get item author url WC 7.5.1
private function get_item_author_url() : string { $author_url = get_comment_author_url(); $protocols = [ 'https://', 'http://' ]; if ( in_array( $author_url, $protocols ) ) { $author_url = ''; } return $author_url; }