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

2022/07/13

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 } ?>

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注