kelvysmoura / mtp
类,辅助创建社交媒体和SEO元标签
1.0.0
2017-12-28 05:19 UTC
Requires
- php: >=5.5.0
This package is not auto-updated.
Last update: 2024-10-02 04:08:26 UTC
README
Composer安装
$ composer require kelvysmoura/mtp
如何使用
use MetaTagsPhp\Mtp; $metatags = new Mtp();
生成Open Graph标签(Facebook)
use MetaTagsPhp\Mtp; $metatags = new Mtp(); # Gerando tags html $metatags->OpenGraph([ "title" => "Meu Site" ]); # Mostrando Tags $metatags->showTags(); // resultado: <meta property="og:title" content="Meu Site" />
生成SEO标签
use MetaTagsPhp\Mtp; $metatags = new Mtp(); # Gerando tags html $metatags->MetaName([ "author" => "Kelvys Moura" ]); # Mostrando Tags $metatags->showTags(); // resultado: <meta name="author" content="Kelvys Moura" />