当前位置:首页 > 云计算 > 正文内容

WordPress判断是否指定文章类型归档页函数:is_post_type_archive

2022-05-31 08:15:14云计算7

WordPress函数is_post_type_archive用于判断是否指定的文章类型归档页。

is_post_type_archive( string|string[] $post_types = '' )

函数参数

$post_types

字符串

指定文章类型

函数使用示例

<?php if ( is_post_type_archive() ) { ?>
	<h1><?php post_type_archive_title(); ?></h1>
<?php } ?>

扩展阅读

is_post_type_archive()函数位于:wp-includes/query.php

相关函数:

  • get_the_archive_title()
  • get_the_archive_description()
  • wp_get_document_title()
  • post_type_archive_title()

本网站文章仅供交流学习 ,不作为商用, 版权归属原作者,部分文章推送时未能及时与原作者取得联系,若来源标注错误或侵犯到您的权益烦请告知,我们将立即删除.

本文链接:https://www.xibujisuan.cn/22821.html

标签: WordPress