Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pedroborges/kirby-meta-tags

⬢ HTML meta tags generator for Kirby. Supports Open Graph and Twitter Cards out of the box.
https://github.com/pedroborges/kirby-meta-tags

kirby-cms kirby-plugin meta-tags open-graph twitter-cards

Last synced: about 1 hour ago
JSON representation

⬢ HTML meta tags generator for Kirby. Supports Open Graph and Twitter Cards out of the box.

Awesome Lists containing this project

README

        

# Kirby Meta Tags [![Release](https://img.shields.io/github/release/pedroborges/kirby-meta-tags.svg)](https://github.com/pedroborges/kirby-meta-tags/releases) [![Issues](https://img.shields.io/github/issues/pedroborges/kirby-meta-tags.svg)](https://github.com/pedroborges/kirby-meta-tags/issues)

HTML meta tags generator for Kirby. Supports [Open Graph](http://ogp.me), [Twitter Cards](https://dev.twitter.com/cards/overview), and [JSON Linked Data](https://json-ld.org) out of the box.

## Requirements
- Kirby 3
- PHP 7.1+

## Installation

### Download
Download and copy this repository to `site/plugins/meta-tags`.

### Git submodule
```
git submodule add https://github.com/pedroborges/kirby-meta-tags.git site/plugins/meta-tags
```

### Composer
```
composer require pedroborges/kirby-meta-tags
```

> For Kirby 2, you can download [v1.1.1](https://github.com/pedroborges/kirby-meta-tags/archive/v1.1.1.zip) and copy the files to `site/plugins/meta-tags`.

## Basic Usage
After installing the Meta Tags plugin, you need to add one line to the `head` element on your template, or `header.php` snippet:

```diff



+ metaTags() ?>
```

By default the `metaTags` page method will render all tag groups at once. But you can also render only one tag at a time:

```php
metaTags('title') ?>
```

Or specify which tags to render:

```php
metaTags(['og', 'twitter', 'json-ld']) ?>
```

### Default
The plugin ships with some default meta tags enabled for your convenience:

```php
return [
// other options...
'pedroborges.meta-tags.default' => function ($page, $site) {
return [
'title' => $site->title(),
'meta' => [
'description' => $site->description()
],
'link' => [
'canonical' => $page->url()
],
'og' => [
'title' => $page->isHomePage()
? $site->title()
: $page->title(),
'type' => 'website',
'site_name' => $site->title(),
'url' => $page->url()
]
];
}
]
```

**The `pedroborges.meta-tags.default` option is applied to all pages on your Kirby site.** Of course you can change the defaults. In order to do that, just copy this example to your `site/config/config.php` file and tweak it to fit your website needs.

### Templates
Following the flexible spirit of Kirby, you also have the option to add template specific meta tags:

```php
return [
// other options...
'pedroborges.meta-tags.templates' => function ($page, $site) {
return [
'song' => [
'og' => [
'type' => 'music.song',
'namespace:music' => [
'duration' => $page->duration(),
'album' => $page->parent()->url(),
'musician' => $page->singer()->html()
]
]
]
];
}
]
```

In the example above, those settings will only be applied to pages which template is `song`.

For more information on all the `meta`, `link`, Open Graph and Twitter Card tags available, check out these resources:

- [`` Cheat Sheet](http://gethead.info)
- [Open Graph](http://ogp.me)
- [Twitter Cards](https://dev.twitter.com/cards/overview)

## Options
Both the `pedroborges.meta-tags.default` and `pedroborges.meta-tags.templates` accept similar values:

### `pedroborges.meta-tags.default`
It accepts an array containing any or all of the following keys: `title`, `meta`, `link`, `og`, and `twitter`. With the exception of `title`, all other groups must return an array of key-value pairs. Check out the [tag groups](#tag-groups) section to learn which value types are accepted by each key.

```php
'pedroborges.meta-tags.default' => function ($page, $site) {
return [
'title' => 'Site Name',
'meta' => [ /* meta tags */ ],
'link' => [ /* link tags */ ],
'og' => [ /* Open Graph tags */ ],
'twitter' => [ /* Twitter Card tags */ ],
'json-ld' => [ /* JSON-LD schema */ ],
];
}
```

### `pedroborges.meta-tags.templates`
This option allows you to define a template specific set of meta tags. It must return an array where each key corresponds to the template name you are targeting.

```php
'pedroborges.meta-tags.templates' => function ($page, $site) {
return [
'article' => [ /* tags groups */ ],
'about' => [ /* tags groups */ ],
'products' => [ /* tags groups */ ],
];
}
```

When a key matches the current page template name, it is merged and overrides any repeating properties defined on the `pedroborges.meta-tags.default` option so you don't have to repeat yourself.

## Tag Groups
These groups accept string, closure, or array as their values. Being so flexible, the sky is the limit to what you can do with Meta Tags!

### `title`
Corresponds to the HTML `` element and accepts a `string` as value.

```php
'title' => $page->isHomePage()
? $site->title()
: $page->title(),
```

> You can also pass it a `closure` that returns a `string` if the logic to generate the `title` is more complex.

### `meta`
The right place to put any generic HTML `` elements. It takes an `array` of key-value pairs. The returned value must be a `string` or `closure`.

```php
'meta' => [
'description' => $site->description(),
'robots' => 'index,follow,noodp'
],
```

Show HTML 👁

```html

```

### `link`
This tag group is used to render HTML `` elements. It takes an `array` of key-value pairs. The returned value can be a `string`, `array`, or `closure`.

```php
'link' => [
'stylesheet' => url('assets/css/main.css'),
'icon' => [
['href' => url('assets/images/icons/favicon-62.png'), 'sizes' => '62x62', 'type' =>'image/png'],
['href' => url('assets/images/icons/favicon-192.png'), 'sizes' => '192x192', 'type' =>'image/png']
],
'canonical' => $page->url(),
'alternate' => function ($page) {
$locales = [];

foreach (kirby()->languages() as $language) {
if ($language->code() == kirby()->language()) continue;

$locales[] = [
'hreflang' => $language->code(),
'href' => $page->url($language->code())
];
}

return $locales;
}
],
```

Show HTML 👁

```html

```

### `og`
Where you can define [Open Graph](http://ogp.me) `` elements.

```php
'og' => [
'title' => $page->title(),
'type' => 'website',
'site_name' => $site->title(),
'url' => $page->url()
],
```

Show HTML 👁

```html

```

Of course you can use Open Graph [structured objects](http://ogp.me/#structured). Let's see a blog post example:

```php
'pedroborges.meta-tags.templates' => function ($page, $site) {
return [
'article' => [ // template name
'og' => [ // tags group name
'type' => 'article', // overrides the default
'namespace:article' => [
'author' => $page->author(),
'published_time' => $page->date('Y-m-d'),
'modified_time' => $page->modified('Y-m-d'),
'tag' => ['tech', 'web']
],
'namespace:image' => function(Page $page) {
$image = $page->cover()->toFile();

return [
'image' => $image->url(),
'height' => $image->height(),
'width' => $image->width(),
'type' => $image->mime()
];
}
]
]
];
}
```

Show HTML 👁

```html

Pedro Borges

```

Use the `namespace:` prefix for structured properties:

- `author` inside `namespace:article` becomes `og:article:author`.
- `image` inside `namespace:image` becomes `og:image`.
- `width` inside `namespace:image` becomes `og:image:width`.

> When using Open Graph tags, you will want to add the `prefix` attribute to the `html` element as suggested on [their docs](http://ogp.me/#metadata): ``

### `twitter`
This tag group works just like the previous one, but it generates `` tags for [Twitter Cards](https://dev.twitter.com/cards/overview) instead.

```php
'twitter' => [
'card' => 'summary',
'site' => $site->twitter(),
'title' => $page->title(),
'namespace:image' => function ($page) {
$image = $page->cover()->toFile();

return [
'image' => $image->url(),
'alt' => $image->alt()
];
}
]
```

Show HTML 👁

```html

```

### `json-ld`
Use this tag group to add [JSON Linked Data](https://json-ld.org) schemas to your website.

```php
'json-ld' => [
'Organization' => [
'name' => $site->title()->value(),
'url' => $site->url(),
"contactPoint" => [
'@type' => 'ContactPoint',
'telephone' => $site->phoneNumber()->value(),
'contactType' => 'customer service'
]
]
]
```

> If you leave them out, `http://schema.org` will be added as `@context` and the array key will be added as `@type`.

Show HTML 👁

```html

{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Example Co",
"url": "https://example.com",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-401-555-1212",
"contactType": "customer service"
}
}

```

## Change Log
All notable changes to this project will be documented at:

## License
The Meta Tags plugin is open-sourced software licensed under the [MIT license](http://www.opensource.org/licenses/mit-license.php).

Copyright © 2019 Pedro Borges