wp-admin/includes/class-wp-ms-sites-list-table.php:899Returns a clean label for the primary (URL) column's row header aria-label.
$blogarraystring protected function get_primary_column_aria_label( $blog ) { $blog_name = html_entity_decode( (string) get_blog_option( $blog['blog_id'], 'blogname', '' ), ENT_QUOTES, get_bloginfo( 'charset' ) ); $blog_name = wp_strip_all_tags( $blog_name ); // Fall back to the blog URL and path if the blog name is empty. return '' !== $blog_name ? $blog_name : untrailingslashit( $blog['domain'] . $blog['path'] ); }Introduced in 7.1.0.
Signature, return type and hooks compared across 1 parsed release.
src/wp-admin/includes/class-wp-ms-sites-list-table.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.