addMeta() 공개 메소드

Add a meta to the card.
public addMeta ( string $name, string $content ) : self
$name string
$content string
리턴 self
예제 #1
0
 /**
  * Add a meta to the Twitter Card.
  *
  * @param  string  $name
  * @param  string  $content
  *
  * @return \Arcanedev\SeoHelper\SeoTwitter
  */
 public function addMeta($name, $content)
 {
     $this->card->addMeta($name, $content);
     return $this;
 }