single_cat_title()

single_cat_title( string $prefix = ”, bool $display = t…

single_cat_title( string $prefix = , bool $display = true )

显示或检索类别存档的页面标题。
Display or retrieve page title for category archive.

目录锚点:#说明#参数#源码#笔记


说明(Description)

对于用于显示类别页面标题的类别模板文件非常有用。前缀不会自动在前缀之间放置空格,因此如果应该有空格,则参数值将需要在其末尾。


参数(Parameters)

参数 类型 说明
$prefix (string) 标题前显示的内容。
$display (bool) 是显示还是检索标题。

源码(Source)

/**
 * Display or retrieve page title for category archive.
 *
 * This is useful for category template file or files, because it is optimized
 * for category page title and with less overhead than {@link wp_title()}.
 *
 * It does not support placing the separator after the title, but by leaving the
 * prefix parameter empty, you can set the title separator manually. The prefix
 * does not automatically place a space between the prefix, so if there should
 * be a space, the parameter value will need to have it at the end.
 *
 * @since 0.71
 *
 * @param string $prefix  Optional. What to display before the title.
 * @param bool   $display Optional, default is true. Whether to display or retrieve title.
 * @return string|void Title when retrieving.
 */
function single_cat_title( $prefix = '', $display = true ) {
	return single_term_title( $prefix, $display );
}
更新版本 源码位置 使用 被使用
0.71 wp-includes/general-template.php 17 16

笔记(Notes)

上面的例子(https://developer.wordpress.org/reference/functions/single_cat_title/#评论-478)缺少翻译支持。所有字符串都应该是可翻译的。

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册