is_post_type_archive 判断是否是指定文章类型的归档页
在 WordPress 主题开发中,如果我们自定义了一种文章类型,想给这个自定义文章类型的归档页,来点不一样的感觉,就需要使用 is_post_type_archive 了。
此函数与 WordPress 主题中的 archive-$posttype.php 对应。
也想出现在这里?联系我们吧

函数使用举例:
if (is_post_type_archive('my_custom_post_zhuige_com')) {
echo '我自定义了文章类型:云模板';
}
这个函数的功能说起来有点绕口,但是如果想做一个有特色的主题,用处还是挺大的。