個人用ツール

ver4/関数リファレンス/title

提供: baserCMS公式ガイド

2018年6月4日 (月) 01:39時点におけるWebbingstudio (トーク | 投稿記録)による版

移動: 案内, 検索

説明

METAのtitleを出力する。

使い方

$this->BcBaser->title($separator , $options );

パラメーター

(string) $separator
階層の区切り文字を指定する。 初期値 = '|'
(array) $options
categoryTitleOn : カテゴリを表示するかを boolean で指定。falseで表示しない 初期値 = null
tag : タグが記述されていた場合、どのように扱うかを boolean で指定。trueでエンコードして出力、falseで除去する 初期値 = true
allowableTags : tagがfalseだった場合、除去しないタグをPHPのstrip_tagsの書式で指定 初期値 = (空)

以下、ソースより引用

version 3.0.10 より第2引数 $categoryTitleOn は、 $options にまとめられました。
後方互換のために第2引数に配列型以外を指定された場合は、 $categoryTitleOn として取り扱います。

用例

基本

タイトルが「サービス1」、カテゴリーが「サービス」、サイト名が「baserCMS inc.」だった場合

コード

<?php $this->BcBaser->title() ?>

出力

<title>サービス1|サービス|baserCMS inc.</title>

応用

タイトルが「<em>サービス</em><strong>1</strong>」、カテゴリーが「サービス」、サイト名が「baserCMS inc.」だった場合

コード

<?php
    $args = array(
        'categoryTitleOn' => false,
        'tag' => false,
        'allowableTags' => '<strong>'
    );
    $this->BcBaser->title(' : ', $args);
?>

出力

<title>サービス&lt;strong&gt;&lt;/strong&gt; : baserCMS inc.</title>

BcBaser->titleはタグも含めて出力される。ページタイトルとして文字列のみ出力したい場合は、BcBaser->contentsTitleを使用する。

変更履歴

2018-06-04

  • version 3.0.10以降の第二引数の解説を追加

ソースファイル

https://github.com/baserproject/basercms/blob/master/lib/Baser/View/Helper/BcBaserHelper.php

関連資料