Files
profile/template-parts/header/head-meta-author.php

18 lines
378 B
PHP
Raw Normal View History

2025-07-09 21:21:17 +03:00
<!--[header/head-meta-author]-->
<?php
$authors = implode(
",",
array_map(
fn ($author) => htmlspecialchars( $author->display_name ),
get_coauthors()
)
);
?>
<meta name="author" content="<?= $authors ?>" />
<!--[header/head-meta-author]-->