is_post_type_archive()函数用来判断归属于某个类型的文章归档页。
语法
<?php is_post_type_archive( $post_types ); ?>
参数
$post_types 指的是文章类型或者自定义文章类型
实例
<?php
if ( is_post_type_archive() ) {
?>
<h1><?php post_type_archive_title(); ?></h1>
<?php
}
?>
is_post_type_archive()函数用来判断归属于某个类型的文章归档页。
语法
<?php is_post_type_archive( $post_types ); ?>
参数
$post_types 指的是文章类型或者自定义文章类型
实例
<?php
if ( is_post_type_archive() ) {
?>
<h1><?php post_type_archive_title(); ?></h1>
<?php
}
?>
本文系许小珂发布在许小珂,欢迎转载分享,转载请保留出处
发表评论