v1.1.0
Added
-
Support for JSON-LD schema:
'json-ld' => [ 'Organization' => [ 'name' => $site->title()->value(), 'url' => $site->url(), "contactPoint" => [ '@type' => 'ContactPoint', 'telephone' => $site->phoneNumber()->value(), 'contactType' => 'customer service' ] ] ]
-
Support for rendering one tag or a specific group of tags:
<?php echo $page->metaTags('title') ?> // or passing an array <?php echo $page->metaTags(['og', 'twitter', 'json-ld']) ?>
Fixed
- Tags with empty value being rendered with invalid markup.