Línea 1... |
Línea 1... |
1 |
<?php
|
1 |
<?php
|
Línea 2... |
Línea 2... |
2 |
|
2 |
|
3 |
$this->headTitle("$share_title");
|
3 |
$this->headTitle("$share_title");
|
4 |
$this->headMeta()->appendName('description', "$share_title");
|
4 |
$this->headMeta()->appendName('description', $share_title);
|
5 |
$this->headMeta()->appendProperty('og:title', "$share_title");
|
5 |
$this->headMeta()->appendProperty('og:title', $share_title);
|
6 |
$this->headMeta()->appendProperty('og:url', "$share_url");
|
6 |
$this->headMeta()->appendProperty('og:url', $share_url);
|
7 |
$this->headMeta()->appendProperty('og:description', "$share_description");
|
7 |
$this->headMeta()->appendProperty('og:description', $share_description);
|
- |
|
8 |
$this->headMeta()->setProperty('og:image', 'image');
|
- |
|
9 |
$this->headMeta()->setItemProp('image');
|
8 |
$this->headMeta()->appendProperty('og:image', "$share_image");
|
10 |
$this->headMeta()->setContent('content');
|
9 |
$this->headMeta()->appendProperty('og:image:secure_url', "$share_image");
|
11 |
$this->headMeta()->appendProperty('og:image:secure_url', $share_image);
|
10 |
$this->headMeta()->appendProperty('og:image:width', "300");
|
12 |
$this->headMeta()->appendProperty('og:image:width', "300");
|
11 |
$this->headMeta()->appendProperty('og:image:height', "300");
|
13 |
$this->headMeta()->appendProperty('og:image:height', "300");
|
12 |
$this->headMeta()->appendProperty('og:type', 'website');
|
14 |
$this->headMeta()->appendProperty('og:type', 'website');
|
13 |
$this->headMeta()->appendProperty('og:locale', 'es_ES');
|
15 |
$this->headMeta()->appendProperty('og:locale', 'es_ES');
|