我要投稿 | 网站地图 WordPress建站学习平台
WordPress教程网
热门标签: wordpress教程 wordpress函数 wordpress WordPress建站 wordpress插件

图文教程

当前位置:首页> 图文教程

WordPress函数post_type_archive_title()

发布:WordPress教程网   发布时间: 2023-02-10  游览次数:28次

介绍

post_type_archive_title()

是自定义文章类型 post type 的archive页面标题。显示 archive.php 和 archive-{posttype}.php 页面标题。

使用

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

参数

$prefix
(string) (optional) What to display before the title
Default: None
$display
(bool) (optional) Whether to display or retrieve title
Default: true

返回值

(string)
Title when retrieving, null when displaying or failure.

示例

显示自定义文章类型的archive标题。

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

本文版权归原作者所有,转载请注明原文来源出处, WordPress教程网 感谢您的支持!

本文链接: http://www.wpcn.net/795.html

WordPress教程网
WordPress教程网
相关内容