wp_get_original_image_path

函数
wp_get_original_image_path ( $attachment_id, $unfiltered = false )
参数
  • (int) $attachment_id Attachment ID.
    Required:
  • (bool) $unfiltered Optional. Passed through to `get_attached_file()`. Default false.
    Required:
    Default: false
返回值
  • (string|false) Path to the original image file or false if the attachment is not an image.
定义位置
相关方法
wp_get_original_image_urlwp_get_original_refererwp_get_additional_image_sizeswp_get_single_postget_home_path
引入
5.3.0
弃用
-

wp_get_original_image_path: 这个函数返回一个图像大小的原始图像的文件路径。它接受一个文章ID和一个图像尺寸名称作为参数。

检索上传图片文件的路径。

类似于`get_attached_file()`,但是一些图片在上传后可能被处理过,以使其适合于网络使用。在这种情况下,附加的”全尺寸”文件通常被替换为原始图像的缩小版本: 这个函数总是返回 到最初上传的图像文件的路径。

function wp_get_original_image_path( $attachment_id, $unfiltered = false ) {
	if ( ! wp_attachment_is_image( $attachment_id ) ) {
		return false;
	}

	$image_meta = wp_get_attachment_metadata( $attachment_id );
	$image_file = get_attached_file( $attachment_id, $unfiltered );

	if ( empty( $image_meta['original_image'] ) ) {
		$original_image = $image_file;
	} else {
		$original_image = path_join( dirname( $image_file ), $image_meta['original_image'] );
	}

	/**
	 * Filters the path to the original image.
	 *
	 * @since 5.3.0
	 *
	 * @param string $original_image Path to original image file.
	 * @param int    $attachment_id  Attachment ID.
	 */
	return apply_filters( 'wp_get_original_image_path', $original_image, $attachment_id );
}

常见问题

FAQs
查看更多 >