is_archived

函数
is_archived ( $id )
参数
  • (int) $id Blog ID.
    Required:
返回值
  • (string) Whether the blog is archived or not.
定义位置
相关方法
is_archiveget_archivesis_searchupdate_archivedis_active_widget
引入
-
弃用
-

is_archived: 这个函数用来检查一个给定的文章是否已被归档。它以文章ID或文章对象为参数,如果文章已被归档,则返回真,否则返回假。

检查一个特定的博客是否被归档。

function is_archived( $id ) {
	return get_blog_status( $id, 'archived' );
}

常见问题

FAQs
查看更多 >