get_random_header_image

函数
get_random_header_image ( No parameters )
返回值
  • (string) Path to header image.
定义位置
相关方法
is_random_header_image_get_random_header_dataget_header_imageget_header_image_tagget_uploaded_header_images
引入
3.2.0
弃用
-

get_random_header_image函数是一个WordPress函数,它为一个特定的头像主题检索一个随机的头像: 这个函数接收一个头像主题的可选参数,并返回一个随机头像。

从主题中注册的图片中随机获得头像URL。

function get_random_header_image() {
	$random_image = _get_random_header_data();

	if ( empty( $random_image->url ) ) {
		return '';
	}

	return $random_image->url;
}

常见问题

FAQs
查看更多 >