kelvysmoura / mtp
Classe para auxiliar na criação de meta tags de redes sociais e meta tags seo
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/kelvysmoura/mtp
Requires
- php: >=5.5.0
This package is not auto-updated.
Last update: 2025-10-01 08:46:12 UTC
README
Instação Composer
$ composer require kelvysmoura/mtp
Como usar
use MetaTagsPhp\Mtp; $metatags = new Mtp();
Gerando tags 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" />
Gerando tags 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" />