BcBaserHelper::rss PHP Method

rss() public method

RSSフィードのリンクタグを出力する
public rss ( string $title, string $link ) : void
$title string RSSのタイトル
$link string RSSのURL
return void
    public function rss($title, $link)
    {
        echo $this->BcHtml->meta($title, $link, array('type' => 'rss')) . "\n";
    }