wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_attachment_is › WordPress Function

Since4.2.0
已弃用n/a
wp_attachment_is ( $type, $post = null )
参数: (2)
  • (string) $type Attachment type. Accepts `image`, `audio`, `video`, or a file extension.
    Required: Yes
  • (int|WP_Post) $post Optional. Attachment ID or object. Default is global $post.
    Required: No
    默认: null
返回:
  • (bool) True if an accepted type or a matching file extension, false otherwise.
定义在:
文档:

Verifies an attachment is of a given type.



源码

function wp_attachment_is( $type, $post = null ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	$file = get_attached_file( $post->ID );

	if ( ! $file ) {
		return false;
	}

	if ( str_starts_with( $post->post_mime_type, $type . '/' ) ) {
		return true;
	}

	$check = wp_check_filetype( $file );

	if ( empty( $check['ext'] ) ) {
		return false;
	}

	$ext = $check['ext'];

	if ( 'import' !== $post->post_mime_type ) {
		return $type === $ext;
	}

	switch ( $type ) {
		case 'image':
			$image_exts = array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'webp', 'avif' );
			return in_array( $ext, $image_exts, true );

		case 'audio':
			return in_array( $ext, wp_get_audio_extensions(), true );

		case 'video':
			return in_array( $ext, wp_get_video_extensions(), true );

		default:
			return $type === $ext;
	}
}