Files
profile/template-parts/header/head-meta-author.php
Andrey Kuvshinov 8fc8cbae32 add files
2025-07-09 21:21:17 +03:00

18 lines
378 B
PHP

<!--[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]-->