时间:2024-03-15
WordPress模板标签wp_title用于输出页面的标题,通常用在页面的<title>标签中。在WordPress 4.4版本之后,wp_title()函数已被弃用。
wp_title( string $sep = '»', bool $display = true, string $seplocation = '' )
$sep
字符串值,默认值:»
提供的字符用于分隔标题中的项,默认 »
$display
布尔值,默认值:true
是否输出函数返回的结果。
$seplocation
字符串值,默认为空
标题的显示方向,例如:right
<title><?php wp_title(); ?></title>
wp_title()函数位于:wp-includes/general-template.php
相关函数:
single_post_title()
wp_title_parts()
Copyright © 2019-2024 javascript.hk