the_title

函数
the_title ( $before = '', $after = '', $echo = true )
参数
  • (string) $before Optional. Markup to prepend to the title. Default empty.
    Required:
    Default: (empty)
  • (string) $after Optional. Markup to append to the title. Default empty.
    Required:
    Default: (empty)
  • (bool) $echo Optional. Whether to echo or return the title. Default true for echo.
    Required:
    Default: true
返回值
  • (void|string) Void if `$echo` argument is true, current post title if `$echo` is false.
定义位置
相关方法
the_title_rssthe_timeget_the_titlethe_datewp_title
引入
0.71
弃用
-

the_title: 这个函数显示当前文章或页面的标题。它通常在The Loop中使用,可以用来显示文章或页面的链接,标题是链接的文本。

显示或检索当前文章的标题,并带有可选标记。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function the_title( $before = '', $after = '', $echo = true ) {
$title = get_the_title();
if ( strlen( $title ) == 0 ) {
return;
}
$title = $before . $title . $after;
if ( $echo ) {
echo $title;
} else {
return $title;
}
}
function the_title( $before = '', $after = '', $echo = true ) { $title = get_the_title(); if ( strlen( $title ) == 0 ) { return; } $title = $before . $title . $after; if ( $echo ) { echo $title; } else { return $title; } }
function the_title( $before = '', $after = '', $echo = true ) {
	$title = get_the_title();

	if ( strlen( $title ) == 0 ) {
		return;
	}

	$title = $before . $title . $after;

	if ( $echo ) {
		echo $title;
	} else {
		return $title;
	}
}

常见问题

FAQs
查看更多 >