函数描述
获取自定义文章类型存档页面的自定义链接。
Usage
get_post_type_archive_link( $post_type );
parameters
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$post_type | string (computer science) | be | 自定义文章类型名称 | not have |
返回值
(mixed) 所请求的自定义文章类型的存档页URL,如果文章类型不存在或文章类型没有存档页,返回false。
usage example
<a href="/en/</?php echo get_post_type_archive_link( 'movies' ); ?>">电影存档</a>