single_term_title

Sponsored Link

現在のページの分類タイトルを表示または返します。

Sponsored Link

Displays or returns the term title for the current page.

single_term_titleのテンプレートタグ使用方法

<?php single_term_title( $prefix, $display ); ?> 

デフォルトの使い方

<?php single_term_title(
	'prefix'   => '', 
	'display'  => true ); ?>

single_term_titleのパラメーター

$prefix

(string) (optional)タイトルの前に出力するテキスト。デフォルト:なし

(string) (optional) Text to output before the title.
Default: None

$display

(boolean) (optional) タイトル(TRUE)を表示、またはPHP(FALSE)で使用するためにタイトルを返します。

(boolean) (optional) Display the title (TRUE), or return the title to be used in PHP (FALSE).
Default: TRUE

この例では、分類タイトルに続いて”現在の閲覧”のテキストを表示します。

This example displays the text “Currently browsing ” followed by the term title.

<p><?php single_term_title('Currently browsing '); ?>.</p>
Currently browsing WordPress.

この例では、PHPで使用するために変数$current_termに現在の分類タイトルを割り当てます。

This example assigns the current term title to the variable $current_term for use in PHP.

<?php $current_term = single_term_title("", false); ?>

変更ログ

Since: 3.1.0

関連テンプレートタグ

  • single_cat_title()
  • single_tag_title()
Sponsored Link