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-includes/post.php
    , line 7976
引入
5.3.0
弃用

Retrieves the path to an uploaded image file.

Similar to `get_attached_file()` however some images may have been processed after uploading
to make them suitable for web use. In this case the attached “full” size file is usually replaced
with a scaled down version of the original image. This function always returns the path
to the originally uploaded image 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 );
}
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。