当前浏览:首页 / WordPress函数 / post_type_archive_title()

post_type_archive_title( string $prefix = '', bool $display = true )

显示或检索文章类型存档的标题

archive 存档

post_type 文章类型more...

titlemore...


描述

这是对archive.php和archive-{$post_type}.php模板文件的优化,用于显示文章类型的标题。


参数

$prefix

(string) (可选) 标题前显示的内容。

默认值: ''

$display

(bool) (可选) 显示或检索标题。

默认值: true


返回

(string|void) 检索时为title,显示或失败时为null。



源码

查看源码 官方文档


更新日志

版本描述
3.1.0开始引入

使用示例

  • 示例1

    显示自定义文章类型标题:

    <h1><?php post_type_archive_title(); ?></h1>